import { RequestHandler } from "express"; import { getAccountIdForRequest } from "@/src/services/loginService"; import { getJSONfromString } from "@/src/helpers/stringHelpers"; import { Guild, GuildMember } from "@/src/models/guildModel"; import { createUniqueClanName, getGuildClient } from "@/src/services/guildService"; import { addRecipes, getInventory } from "@/src/services/inventoryService"; export const createGuildController: RequestHandler = async (req, res) => { const accountId = await getAccountIdForRequest(req); const payload = getJSONfromString(String(req.body)); // Create guild on database const guild = new Guild({ Name: await createUniqueClanName(payload.guildName) }); await guild.save(); // Create guild member on database await GuildMember.insertOne({ accountId: accountId, guildId: guild._id, status: 0, rank: 0 }); const inventory = await getInventory(accountId, "GuildId Recipes"); inventory.GuildId = guild._id; addRecipes(inventory, [ { ItemType: "/Lotus/Types/Keys/DojoKeyBlueprint", ItemCount: 1 } ]); await inventory.save(); res.json({ ...(await getGuildClient(guild, accountId)), InventoryChanges: { Recipes: [ { ItemType: "/Lotus/Types/Keys/DojoKeyBlueprint", ItemCount: 1 } ] } }); }; interface ICreateGuildRequest { guildName: string; }