1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-26 20:48:30 +09:00
misskey/src/remote/activitypub/act/follow.ts

26 lines
638 B
TypeScript
Raw Normal View History

2018-04-02 19:50:40 +09:00
import parseAcct from '../../../acct/parse';
import User from '../../../models/user';
import config from '../../../config';
2018-04-04 23:59:38 +09:00
import follow from '../../../api/following/create';
2018-04-02 19:50:40 +09:00
2018-04-04 23:59:38 +09:00
export default async (actor, activity): Promise<void> => {
2018-04-02 19:50:40 +09:00
const prefix = config.url + '/@';
const id = activity.object.id || activity.object;
if (!id.startsWith(prefix)) {
return null;
}
const { username, host } = parseAcct(id.slice(prefix.length));
if (host !== null) {
throw new Error();
}
const followee = await User.findOne({ username, host });
if (followee === null) {
throw new Error();
}
2018-04-04 23:59:38 +09:00
await follow(actor, followee, activity);
2018-04-02 19:50:40 +09:00
};