mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
25 lines
1.0 KiB
TypeScript
25 lines
1.0 KiB
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/guilds/create_guild.ts
|
|
|
|
|
|
import { botId } from "../../bot.ts";
|
|
import { cacheHandlers } from "../../cache.ts";
|
|
import { rest } from "../../rest/rest.ts";
|
|
import { structures } from "../../structures/mod.ts";
|
|
import type { CreateGuild } from "../../types/guilds/create_guild.ts";
|
|
import type { Guild } from "../../types/guilds/guild.ts";
|
|
import { endpoints } from "../../util/constants.ts";
|
|
import { getMember } from "../members/get_member.ts";
|
|
|
|
/** Create a new guild. Returns a guild object on success. Fires a Guild Create Gateway event. This endpoint can be used only by bots in less than 10 guilds. */
|
|
export async function createGuild(options: CreateGuild) {
|
|
const result = await rest.runMethod<Guild>("post", endpoints.GUILDS, options);
|
|
|
|
const guild = await structures.createDiscordenoGuild(result, 0);
|
|
// MANUALLY CACHE THE GUILD
|
|
await cacheHandlers.set("guilds", guild.id, guild);
|
|
// MANUALLY CACHE THE BOT
|
|
await getMember(guild.id, botId);
|
|
|
|
return guild;
|
|
}
|