mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
127 lines
4.2 KiB
TypeScript
127 lines
4.2 KiB
TypeScript
import type { RawFile, REST } from '@discordjs/rest';
|
|
import {
|
|
Routes,
|
|
type APIThreadChannel,
|
|
type APIThreadMember,
|
|
type RESTGetAPIChannelThreadMembersResult,
|
|
type RESTPostAPIChannelThreadsJSONBody,
|
|
type RESTPostAPIChannelThreadsResult,
|
|
type RESTPostAPIGuildForumThreadsJSONBody,
|
|
type Snowflake,
|
|
} from 'discord-api-types/v10';
|
|
|
|
export interface StartThreadOptions extends RESTPostAPIChannelThreadsJSONBody {
|
|
message_id?: string;
|
|
}
|
|
|
|
export interface StartForumThreadOptions extends RESTPostAPIGuildForumThreadsJSONBody {
|
|
message: RESTPostAPIGuildForumThreadsJSONBody['message'] & { files?: RawFile[] };
|
|
}
|
|
|
|
export class ThreadsAPI {
|
|
public constructor(private readonly rest: REST) {}
|
|
|
|
/**
|
|
* Fetches a thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-channel}
|
|
* @param threadId - The id of the thread
|
|
*/
|
|
public async get(threadId: Snowflake) {
|
|
return this.rest.get(Routes.channel(threadId)) as Promise<APIThreadChannel>;
|
|
}
|
|
|
|
/**
|
|
* Creates a new thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#start-thread-from-message}
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#start-thread-without-message}
|
|
* @param channelId - The id of the channel to start the thread in
|
|
* @param data - The data to use when starting the thread
|
|
*/
|
|
public async create(channelId: Snowflake, { message_id, ...body }: StartThreadOptions) {
|
|
return this.rest.post(Routes.threads(channelId, message_id), { body }) as Promise<RESTPostAPIChannelThreadsResult>;
|
|
}
|
|
|
|
/**
|
|
* Creates a new forum post
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#start-thread-in-forum-channel}
|
|
* @param channelId - The id of the forum channel to start the thread in
|
|
* @param data - The data to use when starting the thread
|
|
*/
|
|
public async createForumThread(channelId: Snowflake, { message, ...optionsBody }: StartForumThreadOptions) {
|
|
const { files, ...messageBody } = message;
|
|
|
|
const body = {
|
|
...optionsBody,
|
|
message: messageBody,
|
|
};
|
|
|
|
return this.rest.post(Routes.threads(channelId), { files, body }) as Promise<APIThreadChannel>;
|
|
}
|
|
|
|
/**
|
|
* Adds the current user to a thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#join-thread}
|
|
* @param threadId - The id of the thread to join
|
|
*/
|
|
public async join(threadId: Snowflake) {
|
|
await this.rest.put(Routes.threadMembers(threadId, '@me'));
|
|
}
|
|
|
|
/**
|
|
* Adds a member to a thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#add-thread-member}
|
|
* @param threadId - The id of the thread to add the member to
|
|
* @param userId - The id of the user to add to the thread
|
|
*/
|
|
public async addMember(threadId: Snowflake, userId: Snowflake) {
|
|
await this.rest.put(Routes.threadMembers(threadId, userId));
|
|
}
|
|
|
|
/**
|
|
* Removes the current user from a thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#leave-thread}
|
|
* @param threadId - The id of the thread to leave
|
|
*/
|
|
public async leave(threadId: Snowflake) {
|
|
await this.rest.delete(Routes.threadMembers(threadId, '@me'));
|
|
}
|
|
|
|
/**
|
|
* Removes a member from a thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#remove-thread-member}
|
|
* @param threadId - The id of the thread to remove the member from
|
|
* @param userId - The id of the user to remove from the thread
|
|
*/
|
|
public async removeMember(threadId: Snowflake, userId: Snowflake) {
|
|
await this.rest.delete(Routes.threadMembers(threadId, userId));
|
|
}
|
|
|
|
/**
|
|
* Fetches a member of a thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-thread-member}
|
|
* @param threadId - The id of the thread to fetch the member from
|
|
* @param userId - The id of the user
|
|
*/
|
|
public async getMember(threadId: Snowflake, userId: Snowflake) {
|
|
return this.rest.get(Routes.threadMembers(threadId, userId)) as Promise<APIThreadMember>;
|
|
}
|
|
|
|
/**
|
|
* Fetches all members of a thread
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#list-thread-members}
|
|
* @param threadId - The id of the thread to fetch the members from
|
|
*/
|
|
public async getAllMembers(threadId: Snowflake) {
|
|
return this.rest.get(Routes.threadMembers(threadId)) as Promise<RESTGetAPIChannelThreadMembersResult>;
|
|
}
|
|
}
|