mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
Co-authored-by: Rodry <38259440+ImRodry@users.noreply.github.com> Co-authored-by: Antonio Román <kyradiscord@gmail.com> Co-authored-by: Vlad Frangu <kingdgrizzle@gmail.com>
71 lines
2.3 KiB
JavaScript
71 lines
2.3 KiB
JavaScript
'use strict';
|
|
|
|
const BaseManager = require('./BaseManager');
|
|
const { Error } = require('../errors');
|
|
const Collection = require('../util/Collection');
|
|
|
|
/**
|
|
* Manages API methods for users who reacted to a reaction and stores their cache.
|
|
* @extends {BaseManager}
|
|
*/
|
|
class ReactionUserManager extends BaseManager {
|
|
constructor(client, iterable, reaction) {
|
|
super(client, iterable, { name: 'User' });
|
|
/**
|
|
* The reaction that this manager belongs to
|
|
* @type {MessageReaction}
|
|
*/
|
|
this.reaction = reaction;
|
|
}
|
|
|
|
/**
|
|
* The cache of this manager
|
|
* @type {Collection<Snowflake, User>}
|
|
* @name ReactionUserManager#cache
|
|
*/
|
|
|
|
/**
|
|
* Options used to fetch users who gave a reaction.
|
|
* @typedef {Object} FetchReactionUsersOptions
|
|
* @property {number} [limit=100] The maximum amount of users to fetch, defaults to `100`
|
|
* @property {Snowflake} [after] Limit fetching users to those with an id greater than the supplied id
|
|
*/
|
|
|
|
/**
|
|
* Fetches all the users that gave this reaction. Resolves with a collection of users, mapped by their IDs.
|
|
* @param {FetchReactionUsersOptions} [options] Options for fetching the users
|
|
* @returns {Promise<Collection<Snowflake, User>>}
|
|
*/
|
|
async fetch({ limit = 100, after } = {}) {
|
|
const message = this.reaction.message;
|
|
const data = await this.client.api.channels[message.channel.id].messages[message.id].reactions[
|
|
this.reaction.emoji.identifier
|
|
].get({ query: { limit, after } });
|
|
const users = new Collection();
|
|
for (const rawUser of data) {
|
|
const user = this.client.users.add(rawUser);
|
|
this.cache.set(user.id, user);
|
|
users.set(user.id, user);
|
|
}
|
|
return users;
|
|
}
|
|
|
|
/**
|
|
* Removes a user from this reaction.
|
|
* @param {UserResolvable} [user=this.client.user] The user to remove the reaction of
|
|
* @returns {Promise<MessageReaction>}
|
|
*/
|
|
remove(user = this.client.user) {
|
|
const userID = this.client.users.resolveID(user);
|
|
if (!userID) return Promise.reject(new Error('REACTION_RESOLVE_USER'));
|
|
const message = this.reaction.message;
|
|
return this.client.api.channels[message.channel.id].messages[message.id].reactions[this.reaction.emoji.identifier][
|
|
userID === this.client.user.id ? '@me' : userID
|
|
]
|
|
.delete()
|
|
.then(() => this.reaction);
|
|
}
|
|
}
|
|
|
|
module.exports = ReactionUserManager;
|