mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-01 12:36:08 +00:00

* feat: add support for new Discord application emojis features * feat: add support for new Discord application emojis features * feat: applications emojis routes * chore: switch typings provider * fix: unnecesary type * feat: magic bytes * chore: move api-types * chore: ? * fix: omg npm * chore: apply formatting * fix: for fast merge --------- Co-authored-by: Tony Supremacy <165050835+VanStk@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
90 lines
3.5 KiB
TypeScript
90 lines
3.5 KiB
TypeScript
import type { APIEmoji, RESTPatchAPIGuildEmojiJSONBody, RESTPostAPIGuildEmojiJSONBody } from '../../types';
|
|
import { resolveImage } from '../../builders';
|
|
import type { ImageResolvable } from '../types/resolvables';
|
|
import type { OmitInsert } from '../types/util';
|
|
import { BaseShorter } from './base';
|
|
import { Transformers } from '../../client/transformers';
|
|
|
|
export class EmojiShorter extends BaseShorter {
|
|
/**
|
|
* Retrieves a list of emojis in the guild.
|
|
* @param guildId The ID of the guild.
|
|
* @param force Whether to force fetching emojis from the API even if they exist in the cache.
|
|
* @returns A Promise that resolves to an array of emojis.
|
|
*/
|
|
async list(guildId: string, force = false) {
|
|
let emojis;
|
|
if (!force) {
|
|
emojis = (await this.client.cache.emojis?.values(guildId)) ?? [];
|
|
if (emojis.length) {
|
|
return emojis;
|
|
}
|
|
}
|
|
emojis = await this.client.proxy.guilds(guildId).emojis.get();
|
|
await this.client.cache.emojis?.set(
|
|
emojis.map<[string, APIEmoji]>(x => [x.id!, x]),
|
|
guildId,
|
|
);
|
|
return emojis.map(m => Transformers.GuildEmoji(this.client, m, guildId));
|
|
}
|
|
|
|
/**
|
|
* Creates a new emoji in the guild.
|
|
* @param guildId The ID of the guild.
|
|
* @param body The data for creating the emoji.
|
|
* @returns A Promise that resolves to the created emoji.
|
|
*/
|
|
async create(guildId: string, body: OmitInsert<RESTPostAPIGuildEmojiJSONBody, 'image', { image: ImageResolvable }>) {
|
|
const bodyResolved = { ...body, image: await resolveImage(body.image) };
|
|
const emoji = await this.client.proxy.guilds(guildId).emojis.post({
|
|
body: bodyResolved,
|
|
});
|
|
|
|
await this.client.cache.emojis?.setIfNI('GuildEmojisAndStickers', emoji.id!, guildId, emoji);
|
|
|
|
return Transformers.GuildEmoji(this.client, emoji, guildId);
|
|
}
|
|
|
|
/**
|
|
* Fetches an emoji by its ID.
|
|
* @param guildId The ID of the guild.
|
|
* @param emojiId The ID of the emoji to fetch.
|
|
* @param force Whether to force fetching the emoji from the API even if it exists in the cache.
|
|
* @returns A Promise that resolves to the fetched emoji.
|
|
*/
|
|
async fetch(guildId: string, emojiId: string, force = false) {
|
|
let emoji;
|
|
if (!force) {
|
|
emoji = await this.client.cache.emojis?.get(emojiId);
|
|
if (emoji) return emoji;
|
|
}
|
|
emoji = await this.client.proxy.guilds(guildId).emojis(emojiId).get();
|
|
return Transformers.GuildEmoji(this.client, emoji, guildId);
|
|
}
|
|
|
|
/**
|
|
* Deletes an emoji from the guild.
|
|
* @param guildId The ID of the guild.
|
|
* @param emojiId The ID of the emoji to delete.
|
|
* @param reason The reason for deleting the emoji.
|
|
*/
|
|
async delete(guildId: string, emojiId: string, reason?: string) {
|
|
await this.client.proxy.guilds(guildId).emojis(emojiId).delete({ reason });
|
|
await this.client.cache.emojis?.removeIfNI('GuildEmojisAndStickers', emojiId, guildId);
|
|
}
|
|
|
|
/**
|
|
* Edits an emoji in the guild.
|
|
* @param guildId The ID of the guild.
|
|
* @param emojiId The ID of the emoji to edit.
|
|
* @param body The data to update the emoji with.
|
|
* @param reason The reason for editing the emoji.
|
|
* @returns A Promise that resolves to the edited emoji.
|
|
*/
|
|
async edit(guildId: string, emojiId: string, body: RESTPatchAPIGuildEmojiJSONBody, reason?: string) {
|
|
const emoji = await this.client.proxy.guilds(guildId).emojis(emojiId).patch({ body, reason });
|
|
await this.client.cache.emojis?.setIfNI('GuildEmojisAndStickers', emoji.id!, guildId, emoji);
|
|
return Transformers.GuildEmoji(this.client, emoji, guildId);
|
|
}
|
|
}
|