rudeshark.net/src/remote/activitypub/renderer/person.ts

97 lines
2.8 KiB
TypeScript
Raw Normal View History

2018-04-01 12:18:36 +02:00
import renderImage from './image';
import renderKey from './key';
2018-04-02 06:15:53 +02:00
import config from '../../../config';
2018-05-31 11:34:15 +02:00
import { ILocalUser } from '../../../models/user';
2019-01-30 06:57:13 +01:00
import toHtml from '../../../mfm/toHtml';
2018-06-26 11:34:17 +02:00
import parse from '../../../mfm/parse';
2018-07-19 19:40:37 +02:00
import DriveFile from '../../../models/drive-file';
import { getEmojis } from './note';
import renderEmoji from './emoji';
import { IIdentifier } from '../models/identifier';
2018-04-01 12:18:36 +02:00
2018-07-19 19:40:37 +02:00
export default async (user: ILocalUser) => {
2018-04-08 08:15:22 +02:00
const id = `${config.url}/users/${user._id}`;
2018-04-01 12:18:36 +02:00
2018-07-19 19:40:37 +02:00
const [avatar, banner] = await Promise.all([
DriveFile.findOne({ _id: user.avatarId }),
DriveFile.findOne({ _id: user.bannerId })
]);
2018-12-06 11:15:09 +01:00
const attachment: {
type: string,
name: string,
value: string,
verified_at?: string,
identifier?: IIdentifier
}[] = [];
2018-12-06 11:15:09 +01:00
if (user.twitter) {
attachment.push({
type: 'PropertyValue',
name: 'Twitter',
value: `<a href="https://twitter.com/intent/user?user_id=${user.twitter.userId}" rel="me nofollow noopener" target="_blank"><span>@${user.twitter.screenName}</span></a>`,
identifier: {
type: 'PropertyValue',
name: 'misskey:authentication:twitter',
value: `${user.twitter.userId}@${user.twitter.screenName}`
}
2018-12-06 11:15:09 +01:00
});
}
if (user.github) {
attachment.push({
type: 'PropertyValue',
name: 'GitHub',
value: `<a href="https://github.com/${user.github.login}" rel="me nofollow noopener" target="_blank"><span>@${user.github.login}</span></a>`,
identifier: {
type: 'PropertyValue',
name: 'misskey:authentication:github',
value: `${user.github.id}@${user.github.login}`
}
2018-12-06 11:15:09 +01:00
});
}
if (user.discord) {
attachment.push({
type: 'PropertyValue',
name: 'Discord',
value: `<a href="https://discordapp.com/users/${user.discord.id}" rel="me nofollow noopener" target="_blank"><span>${user.discord.username}#${user.discord.discriminator}</span></a>`,
identifier: {
type: 'PropertyValue',
name: 'misskey:authentication:discord',
value: `${user.discord.id}@${user.discord.username}#${user.discord.discriminator}`
}
2018-12-06 11:15:09 +01:00
});
}
2018-07-19 19:40:37 +02:00
const emojis = await getEmojis(user.emojis);
const apemojis = emojis.map(emoji => renderEmoji(emoji));
const tag = [
...apemojis,
];
2018-04-01 12:18:36 +02:00
return {
2018-06-23 12:16:50 +02:00
type: user.isBot ? 'Service' : 'Person',
2018-04-01 12:18:36 +02:00
id,
inbox: `${id}/inbox`,
outbox: `${id}/outbox`,
2018-08-12 20:49:17 +02:00
followers: `${id}/followers`,
following: `${id}/following`,
2018-09-18 06:08:27 +02:00
featured: `${id}/collections/featured`,
2018-04-23 08:37:27 +02:00
sharedInbox: `${config.url}/inbox`,
endpoints: { sharedInbox: `${config.url}/inbox` },
2018-04-08 11:21:02 +02:00
url: `${config.url}/@${user.username}`,
2018-04-01 12:18:36 +02:00
preferredUsername: user.username,
name: user.name,
2018-06-26 11:34:17 +02:00
summary: toHtml(parse(user.description)),
2018-07-19 19:40:37 +02:00
icon: user.avatarId && renderImage(avatar),
image: user.bannerId && renderImage(banner),
tag,
2018-05-31 11:34:15 +02:00
manuallyApprovesFollowers: user.isLocked,
2018-08-22 02:16:52 +02:00
publicKey: renderKey(user),
isCat: user.isCat,
attachment: attachment.length ? attachment : undefined
2018-04-01 12:18:36 +02:00
};
};