mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 13:02:38 +00:00
89 lines
2.6 KiB
JavaScript
89 lines
2.6 KiB
JavaScript
const GuildChannel = require('./GuildChannel');
|
|
const Webhook = require('./Webhook');
|
|
const TextBasedChannel = require('./interfaces/TextBasedChannel');
|
|
const Collection = require('../util/Collection');
|
|
const MessageStore = require('../stores/MessageStore');
|
|
|
|
/**
|
|
* Represents a guild text channel on Discord.
|
|
* @extends {GuildChannel}
|
|
* @implements {TextBasedChannel}
|
|
*/
|
|
class TextChannel extends GuildChannel {
|
|
constructor(guild, data) {
|
|
super(guild, data);
|
|
this.type = 'text';
|
|
this.messages = new MessageStore(this);
|
|
this._typing = new Map();
|
|
}
|
|
|
|
_patch(data) {
|
|
super._patch(data);
|
|
|
|
/**
|
|
* The topic of the text channel
|
|
* @type {?string}
|
|
*/
|
|
this.topic = data.topic;
|
|
|
|
/**
|
|
* If the Discord considers this channel NSFW
|
|
* @type {boolean}
|
|
* @readonly
|
|
*/
|
|
this.nsfw = Boolean(data.nsfw);
|
|
|
|
this.lastMessageID = data.last_message_id;
|
|
}
|
|
|
|
/**
|
|
* Fetch all webhooks for the channel.
|
|
* @returns {Promise<Collection<Snowflake, Webhook>>}
|
|
*/
|
|
fetchWebhooks() {
|
|
return this.client.api.channels[this.id].webhooks.get().then(data => {
|
|
const hooks = new Collection();
|
|
for (const hook of data) hooks.set(hook.id, new Webhook(this.client, hook));
|
|
return hooks;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Create a webhook for the channel.
|
|
* @param {string} name The name of the webhook
|
|
* @param {Object} [options] Options for creating the webhook
|
|
* @param {BufferResolvable|Base64Resolvable} [options.avatar] Avatar for the webhook
|
|
* @param {string} [options.reason] Reason for creating the webhook
|
|
* @returns {Promise<Webhook>} webhook The created webhook
|
|
* @example
|
|
* channel.createWebhook('Snek', 'https://i.imgur.com/mI8XcpG.jpg')
|
|
* .then(webhook => console.log(`Created webhook ${webhook}`))
|
|
* .catch(console.error)
|
|
*/
|
|
async createWebhook(name, { avatar, reason } = {}) {
|
|
if (typeof avatar === 'string' && !avatar.startsWith('data:')) {
|
|
avatar = await this.client.resolver.resolveImage(avatar);
|
|
}
|
|
return this.client.api.channels[this.id].webhooks.post({ data: {
|
|
name, avatar,
|
|
}, reason }).then(data => new Webhook(this.client, data));
|
|
}
|
|
|
|
// These are here only for documentation purposes - they are implemented by TextBasedChannel
|
|
/* eslint-disable no-empty-function */
|
|
send() {}
|
|
search() {}
|
|
startTyping() {}
|
|
stopTyping() {}
|
|
get typing() {}
|
|
get typingCount() {}
|
|
createMessageCollector() {}
|
|
awaitMessages() {}
|
|
bulkDelete() {}
|
|
acknowledge() {}
|
|
_cacheMessage() {}
|
|
}
|
|
|
|
TextBasedChannel.applyToClass(TextChannel, true);
|
|
|
|
module.exports = TextChannel;
|