import renderImage from './image'; import renderKey from './key'; import config from '../../../config'; import { ILocalUser } from '../../../models/user'; import toHtml from '../../../mfm/html'; import parse from '../../../mfm/parse'; import DriveFile from '../../../models/drive-file'; export default async (user: ILocalUser) => { const id = `${config.url}/users/${user._id}`; const [avatar, banner] = await Promise.all([ DriveFile.findOne({ _id: user.avatarId }), DriveFile.findOne({ _id: user.bannerId }) ]); const attachment: { type: string, name: string, value: string, verified_at?: string }[] = []; user.twitter && attachment.push({ type: 'PropertyValue', name: 'Twitter', value: `@${user.twitter.screenName}` }); user.github && attachment.push({ type: 'PropertyValue', name: 'GitHub', value: `@${user.github.login}` }); user.discord && attachment.push({ type: 'PropertyValue', name: 'Discord', value: `@${user.discord.username}#${user.discord.discriminator}` }); return { type: user.isBot ? 'Service' : 'Person', id, inbox: `${id}/inbox`, outbox: `${id}/outbox`, followers: `${id}/followers`, following: `${id}/following`, featured: `${id}/collections/featured`, sharedInbox: `${config.url}/inbox`, url: `${config.url}/@${user.username}`, preferredUsername: user.username, name: user.name, summary: toHtml(parse(user.description)), icon: user.avatarId && renderImage(avatar), image: user.bannerId && renderImage(banner), manuallyApprovesFollowers: user.isLocked, publicKey: renderKey(user), isCat: user.isCat, attachment: attachment.length ? attachment : undefined }; };