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-04-01 05:18:36 -05:00
|
|
|
|
|
|
|
export default user => {
|
2018-04-08 01:15:22 -05:00
|
|
|
const id = `${config.url}/users/${user._id}`;
|
2018-04-01 05:18:36 -05:00
|
|
|
|
|
|
|
return {
|
|
|
|
type: 'Person',
|
|
|
|
id,
|
|
|
|
inbox: `${id}/inbox`,
|
|
|
|
outbox: `${id}/outbox`,
|
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,
|
|
|
|
summary: user.description,
|
|
|
|
icon: user.avatarId && renderImage({ _id: user.avatarId }),
|
|
|
|
image: user.bannerId && renderImage({ _id: user.bannerId }),
|
|
|
|
publicKey: renderKey(user)
|
|
|
|
};
|
|
|
|
};
|