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

27 lines
732 B
TypeScript
Raw Normal View History

2018-04-02 19:50:40 +09:00
import parseAcct from '../../../acct/parse';
2018-04-07 16:14:35 +09:00
import User, { IRemoteUser } from '../../../models/user';
2018-04-02 19:50:40 +09:00
import config from '../../../config';
2018-04-06 03:10:25 +09:00
import follow from '../../../services/following/create';
2018-04-07 16:14:35 +09:00
import { IFollow } from '../type';
2018-04-02 19:50:40 +09:00
2018-04-07 16:14:35 +09:00
export default async (actor: IRemoteUser, activity: IFollow): Promise<void> => {
2018-04-02 19:50:40 +09:00
const prefix = config.url + '/@';
2018-04-07 16:14:35 +09:00
const id = typeof activity == 'string' ? activity : activity.id;
2018-04-02 19:50:40 +09:00
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
};