Polarcraft/webv2/server/api/users/[id]/discord.get.ts
Xeovalyte 0588dd1c45
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 1s
Build and Deploy / Deploy Discord Bot (push) Failing after 0s
feat: Added set default functions and refresh discord data
2023-06-15 16:55:23 +02:00

26 lines
735 B
TypeScript

export default defineEventHandler(async (event) => {
const userId: string = event.context.params ? event.context.params.id : '@me'
const user = await getUser(userId, event)
const auth = getAuth(event)
try {
const authorizationResponse: DiscordUser = await $fetch('https://discord.com/api/users/@me', {
headers: {
authorization: `Bearer ${auth.accessToken}`
}
})
user.discord.username = authorizationResponse.global_name ?? authorizationResponse.username
user.discord.avatarHash = authorizationResponse.avatar
await applyUsername(user)
} catch (e) {
console.error('Failed to update document', e)
throw createError('Failed to update document')
}
return user.discord
})