Added username switching

This commit is contained in:
2023-05-09 15:23:31 +02:00
parent d2ab24ed64
commit c668ca7f37
5 changed files with 116 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
export default defineEventHandler(async (event) => {
const auth = await getAuth(event)
const userResult = await $fetch('https://discord.com/api/users/@me', {
headers: {
authorization: `Bearer ${auth.accessToken}`
}
})
const coll = db.collection('users')
const doc = {
discord: {
id: userResult.id,
username: userResult.username,
avatarHash: userResult.avatar || null
},
}
await coll.updateOne({ 'discord.id': userResult.id }, { $set: doc })
return doc.discord
});