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

25 lines
756 B
TypeScript
Raw Normal View History

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-08 05:07:17 +09:00
const id = typeof activity.object == 'string' ? activity.object : activity.object.id;
2018-04-02 19:50:40 +09:00
2018-04-08 15:15:22 +09:00
if (!id.startsWith(config.url + '/')) {
2018-04-02 19:50:40 +09:00
return null;
}
2018-04-08 15:15:22 +09:00
const followee = await User.findOne({ _id: id.split('/').pop() });
2018-04-02 19:50:40 +09:00
if (followee === null) {
2018-04-08 15:15:22 +09:00
throw new Error('followee not found');
}
if (followee.host != null) {
throw new Error('フォローしようとしているユーザーはローカルユーザーではありません');
2018-04-02 19:50:40 +09:00
}
2018-04-04 23:59:38 +09:00
await follow(actor, followee, activity);
2018-04-02 19:50:40 +09:00
};