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