mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 03:53:29 +01:00
fix(ApplicationCommandManager): limit permission methods to guilds (#5613)
* fix(ApplicationCommandManager): limit permission methods to guilds * docs: add warn tags * feat: improve error message * style: eslint * chore: make error name more verbose
This commit is contained in:
@@ -109,6 +109,9 @@ const Messages = {
|
|||||||
|
|
||||||
MEMBER_FETCH_NONCE_LENGTH: 'Nonce length must not exceed 32 characters.',
|
MEMBER_FETCH_NONCE_LENGTH: 'Nonce length must not exceed 32 characters.',
|
||||||
|
|
||||||
|
GLOBAL_COMMAND_PERMISSIONS:
|
||||||
|
"Permissions for global commands may only be fetched or modified from a guild's application command manager.",
|
||||||
|
|
||||||
INTERACTION_ALREADY_REPLIED: 'This interaction has already been deferred or replied to.',
|
INTERACTION_ALREADY_REPLIED: 'This interaction has already been deferred or replied to.',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ const BaseManager = require('./BaseManager');
|
|||||||
const { TypeError } = require('../errors');
|
const { TypeError } = require('../errors');
|
||||||
const ApplicationCommand = require('../structures/ApplicationCommand');
|
const ApplicationCommand = require('../structures/ApplicationCommand');
|
||||||
const Collection = require('../util/Collection');
|
const Collection = require('../util/Collection');
|
||||||
const { ApplicationCommandPermissionTypes } = require('../util/Constants');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Manages API methods for application commands and stores their cache.
|
* Manages API methods for application commands and stores their cache.
|
||||||
@@ -164,106 +163,6 @@ class ApplicationCommandManager extends BaseManager {
|
|||||||
return cached ?? null;
|
return cached ?? null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetches the permissions for one or multiple commands.
|
|
||||||
* @param {ApplicationCommandResolvable} [command] The command to get the permissions from
|
|
||||||
* @returns {Promise<ApplicationCommandPermissions[]|Collection<Snowflake, ApplicationCommandPermissions[]>>}
|
|
||||||
* @example
|
|
||||||
* // Fetch permissions for one command
|
|
||||||
* guild.commands.fetchPermissions('123456789012345678')
|
|
||||||
* .then(perms => console.log(`Fetched permissions for ${perms.length} users`))
|
|
||||||
* .catch(console.error);
|
|
||||||
* @example
|
|
||||||
* // Fetch permissions for all commands
|
|
||||||
* client.application.commands.fetchPermissions()
|
|
||||||
* .then(perms => console.log(`Fetched permissions for ${perms.size} commands`))
|
|
||||||
* .catch(console.error);
|
|
||||||
*/
|
|
||||||
async fetchPermissions(command) {
|
|
||||||
if (command) {
|
|
||||||
const id = this.resolveID(command);
|
|
||||||
if (!id) throw new TypeError('INVALID_TYPE', 'command', 'ApplicationCommandResolvable');
|
|
||||||
|
|
||||||
const data = await this.commandPath(id).permissions.get();
|
|
||||||
return data.permissions.map(perm => this.constructor.transformPermissions(perm, true));
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = await this.commandPath.permissions.get();
|
|
||||||
return data.reduce(
|
|
||||||
(coll, perm) =>
|
|
||||||
coll.set(
|
|
||||||
perm.id,
|
|
||||||
perm.permissions.map(p => this.constructor.transformPermissions(p, true)),
|
|
||||||
),
|
|
||||||
new Collection(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Data used for overwriting the permissions for all application commands in a guild.
|
|
||||||
* @typedef {object} GuildApplicationCommandPermissionData
|
|
||||||
* @prop {Snowflake} command The ID of the command
|
|
||||||
* @prop {ApplicationCommandPermissionData[]} permissions The permissions for this command
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the permissions for a command.
|
|
||||||
* @param {ApplicationCommandResolvable|GuildApplicationCommandPermissionData[]} command The command to edit the
|
|
||||||
* permissions for, or an array of guild application command permissions to set the permissions of all commands
|
|
||||||
* @param {ApplicationCommandPermissionData[]} permissions The new permissions for the command
|
|
||||||
* @returns {Promise<ApplicationCommandPermissions[]|Collection<Snowflake, ApplicationCommandPermissions[]>>}
|
|
||||||
* @example
|
|
||||||
* // Set the permissions for one command
|
|
||||||
* client.application.commands.setPermissions('123456789012345678', [
|
|
||||||
* {
|
|
||||||
* id: '876543210987654321',
|
|
||||||
* type: 'USER',
|
|
||||||
* permission: false,
|
|
||||||
* },
|
|
||||||
* ])
|
|
||||||
* .then(console.log)
|
|
||||||
* .catch(console.error);
|
|
||||||
* @example
|
|
||||||
* // Set the permissions for all commands
|
|
||||||
* guild.commands.setPermissions([
|
|
||||||
* {
|
|
||||||
* id: '123456789012345678',
|
|
||||||
* permissions: [{
|
|
||||||
* id: '876543210987654321',
|
|
||||||
* type: 'USER',
|
|
||||||
* permission: false,
|
|
||||||
* }],
|
|
||||||
* },
|
|
||||||
* ])
|
|
||||||
* .then(console.log)
|
|
||||||
* .catch(console.error);
|
|
||||||
*/
|
|
||||||
async setPermissions(command, permissions) {
|
|
||||||
const id = this.resolveID(command);
|
|
||||||
|
|
||||||
if (id) {
|
|
||||||
const data = await this.commandPath(id).permissions.put({
|
|
||||||
data: { permissions: permissions.map(perm => this.constructor.transformPermissions(perm)) },
|
|
||||||
});
|
|
||||||
return data.permissions.map(perm => this.constructor.transformPermissions(perm, true));
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = await this.commandPath.permissions.put({
|
|
||||||
data: command.map(perm => ({
|
|
||||||
id: perm.id,
|
|
||||||
permissions: perm.permissions.map(p => this.constructor.transformPermissions(p)),
|
|
||||||
})),
|
|
||||||
});
|
|
||||||
return data.reduce(
|
|
||||||
(coll, perm) =>
|
|
||||||
coll.set(
|
|
||||||
perm.id,
|
|
||||||
perm.permissions.map(p => this.constructor.transformPermissions(p, true)),
|
|
||||||
),
|
|
||||||
new Collection(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Transforms an {@link ApplicationCommandData} object into something that can be used with the API.
|
* Transforms an {@link ApplicationCommandData} object into something that can be used with the API.
|
||||||
* @param {ApplicationCommandData} command The command to transform
|
* @param {ApplicationCommandData} command The command to transform
|
||||||
@@ -278,24 +177,6 @@ class ApplicationCommandManager extends BaseManager {
|
|||||||
default_permission: command.defaultPermission,
|
default_permission: command.defaultPermission,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Transforms an {@link ApplicationCommandPermissionData} object into something that can be used with the API.
|
|
||||||
* @param {ApplicationCommandPermissionData} permissions The permissions to transform
|
|
||||||
* @param {boolean} [received] Whether these permissions have been received from Discord
|
|
||||||
* @returns {Object}
|
|
||||||
* @private
|
|
||||||
*/
|
|
||||||
static transformPermissions(permissions, received) {
|
|
||||||
return {
|
|
||||||
id: permissions.id,
|
|
||||||
permission: permissions.permission,
|
|
||||||
type:
|
|
||||||
typeof permissions.type === 'number' && !received
|
|
||||||
? permissions.type
|
|
||||||
: ApplicationCommandPermissionTypes[permissions.type],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = ApplicationCommandManager;
|
module.exports = ApplicationCommandManager;
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const ApplicationCommandManager = require('./ApplicationCommandManager');
|
const ApplicationCommandManager = require('./ApplicationCommandManager');
|
||||||
|
const Collection = require('../util/Collection');
|
||||||
|
const { ApplicationCommandPermissionTypes } = require('../util/Constants');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An extension for guild-specific application commands.
|
* An extension for guild-specific application commands.
|
||||||
@@ -16,6 +18,124 @@ class GuildApplicationCommandManager extends ApplicationCommandManager {
|
|||||||
*/
|
*/
|
||||||
this.guild = guild;
|
this.guild = guild;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetches the permissions for one or multiple commands.
|
||||||
|
* @param {ApplicationCommandResolvable} [command] The command to get the permissions from
|
||||||
|
* @returns {Promise<ApplicationCommandPermissions[]|Collection<Snowflake, ApplicationCommandPermissions[]>>}
|
||||||
|
* @example
|
||||||
|
* // Fetch permissions for one command
|
||||||
|
* guild.commands.fetchPermissions('123456789012345678')
|
||||||
|
* .then(perms => console.log(`Fetched permissions for ${perms.length} users`))
|
||||||
|
* .catch(console.error);
|
||||||
|
* @example
|
||||||
|
* // Fetch permissions for all commands
|
||||||
|
* client.application.commands.fetchPermissions()
|
||||||
|
* .then(perms => console.log(`Fetched permissions for ${perms.size} commands`))
|
||||||
|
* .catch(console.error);
|
||||||
|
*/
|
||||||
|
async fetchPermissions(command) {
|
||||||
|
if (command) {
|
||||||
|
const id = this.resolveID(command);
|
||||||
|
if (!id) throw new TypeError('INVALID_TYPE', 'command', 'ApplicationCommandResolvable');
|
||||||
|
|
||||||
|
const data = await this.commandPath(id).permissions.get();
|
||||||
|
return data.permissions.map(perm => this.constructor.transformPermissions(perm, true));
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await this.commandPath.permissions.get();
|
||||||
|
return data.reduce(
|
||||||
|
(coll, perm) =>
|
||||||
|
coll.set(
|
||||||
|
perm.id,
|
||||||
|
perm.permissions.map(p => this.constructor.transformPermissions(p, true)),
|
||||||
|
),
|
||||||
|
new Collection(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Data used for overwriting the permissions for all application commands in a guild.
|
||||||
|
* @typedef {object} GuildApplicationCommandPermissionData
|
||||||
|
* @prop {Snowflake} command The ID of the command
|
||||||
|
* @prop {ApplicationCommandPermissionData[]} permissions The permissions for this command
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the permissions for a command.
|
||||||
|
* @param {ApplicationCommandResolvable|GuildApplicationCommandPermissionData[]} command The command to edit the
|
||||||
|
* permissions for, or an array of guild application command permissions to set the permissions of all commands
|
||||||
|
* @param {ApplicationCommandPermissionData[]} permissions The new permissions for the command
|
||||||
|
* @returns {Promise<ApplicationCommandPermissions[]|Collection<Snowflake, ApplicationCommandPermissions[]>>}
|
||||||
|
* @example
|
||||||
|
* // Set the permissions for one command
|
||||||
|
* client.application.commands.setPermissions('123456789012345678', [
|
||||||
|
* {
|
||||||
|
* id: '876543210987654321',
|
||||||
|
* type: 'USER',
|
||||||
|
* permission: false,
|
||||||
|
* },
|
||||||
|
* ])
|
||||||
|
* .then(console.log)
|
||||||
|
* .catch(console.error);
|
||||||
|
* @example
|
||||||
|
* // Set the permissions for all commands
|
||||||
|
* guild.commands.setPermissions([
|
||||||
|
* {
|
||||||
|
* id: '123456789012345678',
|
||||||
|
* permissions: [{
|
||||||
|
* id: '876543210987654321',
|
||||||
|
* type: 'USER',
|
||||||
|
* permission: false,
|
||||||
|
* }],
|
||||||
|
* },
|
||||||
|
* ])
|
||||||
|
* .then(console.log)
|
||||||
|
* .catch(console.error);
|
||||||
|
*/
|
||||||
|
async setPermissions(command, permissions) {
|
||||||
|
const id = this.resolveID(command);
|
||||||
|
|
||||||
|
if (id) {
|
||||||
|
const data = await this.commandPath(id).permissions.put({
|
||||||
|
data: { permissions: permissions.map(perm => this.constructor.transformPermissions(perm)) },
|
||||||
|
});
|
||||||
|
return data.permissions.map(perm => this.constructor.transformPermissions(perm, true));
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await this.commandPath.permissions.put({
|
||||||
|
data: command.map(perm => ({
|
||||||
|
id: perm.id,
|
||||||
|
permissions: perm.permissions.map(p => this.constructor.transformPermissions(p)),
|
||||||
|
})),
|
||||||
|
});
|
||||||
|
return data.reduce(
|
||||||
|
(coll, perm) =>
|
||||||
|
coll.set(
|
||||||
|
perm.id,
|
||||||
|
perm.permissions.map(p => this.constructor.transformPermissions(p, true)),
|
||||||
|
),
|
||||||
|
new Collection(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transforms an {@link ApplicationCommandPermissionData} object into something that can be used with the API.
|
||||||
|
* @param {ApplicationCommandPermissionData} permissions The permissions to transform
|
||||||
|
* @param {boolean} [received] Whether these permissions have been received from Discord
|
||||||
|
* @returns {Object}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
static transformPermissions(permissions, received) {
|
||||||
|
return {
|
||||||
|
id: permissions.id,
|
||||||
|
permission: permissions.permission,
|
||||||
|
type:
|
||||||
|
typeof permissions.type === 'number' && !received
|
||||||
|
? permissions.type
|
||||||
|
: ApplicationCommandPermissionTypes[permissions.type],
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = GuildApplicationCommandManager;
|
module.exports = GuildApplicationCommandManager;
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const Base = require('./Base');
|
const Base = require('./Base');
|
||||||
|
const { Error } = require('../errors');
|
||||||
const { ApplicationCommandOptionTypes } = require('../util/Constants');
|
const { ApplicationCommandOptionTypes } = require('../util/Constants');
|
||||||
const SnowflakeUtil = require('../util/SnowflakeUtil');
|
const SnowflakeUtil = require('../util/SnowflakeUtil');
|
||||||
|
|
||||||
@@ -130,7 +131,7 @@ class ApplicationCommand extends Base {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The object returned when fetching permissions for an application command.
|
* Data for setting the permissions of an application command.
|
||||||
* @typedef {object} ApplicationCommandPermissionData
|
* @typedef {object} ApplicationCommandPermissionData
|
||||||
* @property {Snowflake} id The ID of the role or user
|
* @property {Snowflake} id The ID of the role or user
|
||||||
* @property {ApplicationCommandPermissionType|number} type Whether this permission if for a role or a user
|
* @property {ApplicationCommandPermissionType|number} type Whether this permission if for a role or a user
|
||||||
@@ -147,6 +148,7 @@ class ApplicationCommand extends Base {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetches the permissions for this command.
|
* Fetches the permissions for this command.
|
||||||
|
* <warn>This is only available for guild application commands.</warn>
|
||||||
* @returns {Promise<ApplicationCommandPermissions[]>}
|
* @returns {Promise<ApplicationCommandPermissions[]>}
|
||||||
* @example
|
* @example
|
||||||
* // Fetch permissions for this command
|
* // Fetch permissions for this command
|
||||||
@@ -155,11 +157,13 @@ class ApplicationCommand extends Base {
|
|||||||
* .catch(console.error);
|
* .catch(console.error);
|
||||||
*/
|
*/
|
||||||
fetchPermissions() {
|
fetchPermissions() {
|
||||||
|
if (!this.guild) throw new Error('GLOBAL_COMMAND_PERMISSIONS');
|
||||||
return this.manager.fetchPermissions(this);
|
return this.manager.fetchPermissions(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the permissions for this command.
|
* Sets the permissions for this command.
|
||||||
|
* <warn>This is only available for guild application commands.</warn>
|
||||||
* @param {ApplicationCommandPermissionData[]} permissions The new permissions for the command
|
* @param {ApplicationCommandPermissionData[]} permissions The new permissions for the command
|
||||||
* @returns {Promise<ApplicationCommandPermissions[]>}
|
* @returns {Promise<ApplicationCommandPermissions[]>}
|
||||||
* @example
|
* @example
|
||||||
@@ -175,6 +179,7 @@ class ApplicationCommand extends Base {
|
|||||||
* .catch(console.error);
|
* .catch(console.error);
|
||||||
*/
|
*/
|
||||||
setPermissions(permissions) {
|
setPermissions(permissions) {
|
||||||
|
if (!this.guild) throw new Error('GLOBAL_COMMAND_PERMISSIONS');
|
||||||
return this.manager.setPermissions(this, permissions);
|
return this.manager.setPermissions(this, permissions);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
20
typings/index.d.ts
vendored
20
typings/index.d.ts
vendored
@@ -2085,18 +2085,8 @@ declare module 'discord.js' {
|
|||||||
public edit(command: ApplicationCommandResolvable, data: ApplicationCommandData): Promise<ApplicationCommand>;
|
public edit(command: ApplicationCommandResolvable, data: ApplicationCommandData): Promise<ApplicationCommand>;
|
||||||
public fetch(id: Snowflake, cache?: boolean, force?: boolean): Promise<ApplicationCommand>;
|
public fetch(id: Snowflake, cache?: boolean, force?: boolean): Promise<ApplicationCommand>;
|
||||||
public fetch(id?: Snowflake, cache?: boolean, force?: boolean): Promise<Collection<Snowflake, ApplicationCommand>>;
|
public fetch(id?: Snowflake, cache?: boolean, force?: boolean): Promise<Collection<Snowflake, ApplicationCommand>>;
|
||||||
public fetchPermissions(): Promise<Collection<Snowflake, ApplicationCommandPermissions[]>>;
|
|
||||||
public fetchPermissions(command: ApplicationCommandResolvable): Promise<ApplicationCommandPermissions[]>;
|
|
||||||
public set(commands: ApplicationCommandData[]): Promise<Collection<Snowflake, ApplicationCommand>>;
|
public set(commands: ApplicationCommandData[]): Promise<Collection<Snowflake, ApplicationCommand>>;
|
||||||
public setPermissions(
|
|
||||||
command: ApplicationCommandResolvable,
|
|
||||||
permissions: ApplicationCommandPermissionData[],
|
|
||||||
): Promise<ApplicationCommandPermissions[]>;
|
|
||||||
public setPermissions(
|
|
||||||
permissions: GuildApplicationCommandPermissionData[],
|
|
||||||
): Promise<Collection<Snowflake, ApplicationCommandPermissions[]>>;
|
|
||||||
private static transformCommand(command: ApplicationCommandData): object;
|
private static transformCommand(command: ApplicationCommandData): object;
|
||||||
private static transformPermissions(permissions: ApplicationCommandPermissionData, received?: boolean): object;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export class BaseGuildEmojiManager extends BaseManager<Snowflake, GuildEmoji, EmojiResolvable> {
|
export class BaseGuildEmojiManager extends BaseManager<Snowflake, GuildEmoji, EmojiResolvable> {
|
||||||
@@ -2112,6 +2102,16 @@ declare module 'discord.js' {
|
|||||||
export class GuildApplicationCommandManager extends ApplicationCommandManager {
|
export class GuildApplicationCommandManager extends ApplicationCommandManager {
|
||||||
constructor(guild: Guild, iterable?: Iterable<any>);
|
constructor(guild: Guild, iterable?: Iterable<any>);
|
||||||
public guild: Guild;
|
public guild: Guild;
|
||||||
|
public fetchPermissions(): Promise<Collection<Snowflake, ApplicationCommandPermissions[]>>;
|
||||||
|
public fetchPermissions(command: ApplicationCommandResolvable): Promise<ApplicationCommandPermissions[]>;
|
||||||
|
public setPermissions(
|
||||||
|
command: ApplicationCommandResolvable,
|
||||||
|
permissions: ApplicationCommandPermissionData[],
|
||||||
|
): Promise<ApplicationCommandPermissions[]>;
|
||||||
|
public setPermissions(
|
||||||
|
permissions: GuildApplicationCommandPermissionData[],
|
||||||
|
): Promise<Collection<Snowflake, ApplicationCommandPermissions[]>>;
|
||||||
|
private static transformPermissions(permissions: ApplicationCommandPermissionData, received?: boolean): object;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class GuildChannelManager extends BaseManager<Snowflake, GuildChannel, GuildChannelResolvable> {
|
export class GuildChannelManager extends BaseManager<Snowflake, GuildChannel, GuildChannelResolvable> {
|
||||||
|
|||||||
Reference in New Issue
Block a user