summaryrefslogtreecommitdiff
path: root/src/remote/resolve-user.ts
blob: 097ed667382551e9e1c6bbf2b8d5af720b55de35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import { toUnicode, toASCII } from 'punycode';
import User from '../models/user';
import resolvePerson from './activitypub/resolve-person';
import Resolver from './activitypub/resolver';
import webFinger from './webfinger';

export default async (username, host, option) => {
	const usernameLower = username.toLowerCase();
	const hostLowerAscii = toASCII(host).toLowerCase();
	const hostLower = toUnicode(hostLowerAscii);

	let user = await User.findOne({ usernameLower, hostLower }, option);

	if (user === null) {
		const acctLower = `${usernameLower}@${hostLowerAscii}`;

		const finger = await webFinger(acctLower, acctLower);
		const self = finger.links.find(link => link.rel && link.rel.toLowerCase() === 'self');
		if (!self) {
			throw new Error();
		}

		user = await resolvePerson(new Resolver(), self.href, acctLower);
	}

	return user;
};