Files
discordeno/plugins/bot/helpers/integrations/getIntegrations.ts
Skillz4Killz ffe7cdbc6f feat: base plugin lib idea (#2308)
* feat: base plugin lib idea

* fix: stuff

* fmt

* fix: imports and exports

* fix: errors & tests

* fix: remove logs
2022-06-18 18:46:37 -04:00

37 lines
1.2 KiB
TypeScript

import { Bot } from "../../bot.ts";
import { BotCollection as Collection } from "../../util/collection.ts";
import { DiscordIntegration } from "../../deps.ts";
/** Returns a list of integrations for the guild. Requires the MANAGE_GUILD permission. */
export async function getIntegrations(bot: Bot, guildId: bigint) {
const result = await bot.rest.runMethod<DiscordIntegration[]>(
bot.rest,
"GET",
bot.constants.routes.GUILD_INTEGRATIONS(guildId),
);
return new Collection(
result.map((res) => {
const integration = bot.transformers.integration(bot, {
guild_id: guildId.toString(),
id: res.id,
name: res.name,
type: res.type,
enabled: res.enabled,
syncing: res.syncing,
role_id: res.role_id,
enable_emoticons: res.enable_emoticons,
expire_behavior: res.expire_behavior,
expire_grace_period: res.expire_grace_period,
user: res.user,
account: res.account,
synced_at: res.synced_at,
subscriber_count: res.subscriber_count,
revoked: res.revoked,
application: res.application,
});
return [integration.id, integration];
}),
);
}