wip
This commit is contained in:
		
							
								
								
									
										24
									
								
								src/remote/activitypub/kernel/follow.ts
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								src/remote/activitypub/kernel/follow.ts
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
import User, { IRemoteUser } from '../../../models/user';
 | 
			
		||||
import config from '../../../config';
 | 
			
		||||
import follow from '../../../services/following/create';
 | 
			
		||||
import { IFollow } from '../type';
 | 
			
		||||
 | 
			
		||||
export default async (actor: IRemoteUser, activity: IFollow): Promise<void> => {
 | 
			
		||||
	const id = typeof activity.object == 'string' ? activity.object : activity.object.id;
 | 
			
		||||
 | 
			
		||||
	if (!id.startsWith(config.url + '/')) {
 | 
			
		||||
		return null;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	const followee = await User.findOne({ _id: id.split('/').pop() });
 | 
			
		||||
 | 
			
		||||
	if (followee === null) {
 | 
			
		||||
		throw new Error('followee not found');
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (followee.host != null) {
 | 
			
		||||
		throw new Error('フォローしようとしているユーザーはローカルユーザーではありません');
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	await follow(actor, followee, activity);
 | 
			
		||||
};
 | 
			
		||||
		Reference in New Issue
	
	Block a user