Sharkey/src/remote/resolve-user.ts

28 lines
851 B
TypeScript
Raw Normal View History

2018-03-31 10:55:00 +00:00
import { toUnicode, toASCII } from 'punycode';
2018-04-01 19:15:27 +00:00
import User from '../models/user';
2018-03-31 10:55:00 +00:00
import resolvePerson from './activitypub/resolve-person';
2018-04-04 16:24:39 +00:00
import Resolver from './activitypub/resolver';
2018-03-31 10:55:00 +00:00
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) {
2018-04-01 12:24:25 +00:00
throw new Error();
2018-03-31 10:55:00 +00:00
}
2018-04-04 16:24:39 +00:00
user = await resolvePerson(new Resolver(), self.href, acctLower);
2018-03-31 10:55:00 +00:00
}
return user;
};