2018-04-01 05:18:36 -05:00
|
|
|
import renderImage from './image';
|
|
|
|
import renderKey from './key';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from '../../../config';
|
2018-05-31 04:34:15 -05:00
|
|
|
import { ILocalUser } from '../../../models/user';
|
2018-06-26 04:34:17 -05:00
|
|
|
import toHtml from '../../../mfm/html';
|
|
|
|
import parse from '../../../mfm/parse';
|
2018-04-01 05:18:36 -05:00
|
|
|
|
2018-05-31 04:34:15 -05:00
|
|
|
export default (user: ILocalUser) => {
|
2018-04-08 01:15:22 -05:00
|
|
|
const id = `${config.url}/users/${user._id}`;
|
2018-04-01 05:18:36 -05:00
|
|
|
|
|
|
|
return {
|
2018-06-23 05:16:50 -05:00
|
|
|
type: user.isBot ? 'Service' : 'Person',
|
2018-04-01 05:18:36 -05:00
|
|
|
id,
|
|
|
|
inbox: `${id}/inbox`,
|
|
|
|
outbox: `${id}/outbox`,
|
2018-04-23 01:37:27 -05:00
|
|
|
sharedInbox: `${config.url}/inbox`,
|
2018-04-08 04:21:02 -05:00
|
|
|
url: `${config.url}/@${user.username}`,
|
2018-04-01 05:18:36 -05:00
|
|
|
preferredUsername: user.username,
|
|
|
|
name: user.name,
|
2018-06-26 04:34:17 -05:00
|
|
|
summary: toHtml(parse(user.description)),
|
2018-06-18 00:28:43 -05:00
|
|
|
icon: user.avatarId && renderImage(user.avatarId),
|
|
|
|
image: user.bannerId && renderImage(user.bannerId),
|
2018-05-31 04:34:15 -05:00
|
|
|
manuallyApprovesFollowers: user.isLocked,
|
2018-04-01 05:18:36 -05:00
|
|
|
publicKey: renderKey(user)
|
|
|
|
};
|
|
|
|
};
|