Sharkey/src/remote/resolve-user.ts

32 lines
926 B
TypeScript
Raw Normal View History

2018-03-31 13:55:00 +03:00
import { toUnicode, toASCII } from 'punycode';
2018-04-01 22:15:27 +03:00
import User from '../models/user';
2018-03-31 13:55:00 +03:00
import resolvePerson from './activitypub/resolve-person';
import webFinger from './webfinger';
2018-04-08 09:25:17 +03:00
import config from '../config';
2018-03-31 13:55:00 +03:00
export default async (username, host, option) => {
const usernameLower = username.toLowerCase();
const hostLowerAscii = toASCII(host).toLowerCase();
const hostLower = toUnicode(hostLowerAscii);
2018-04-08 09:25:17 +03:00
if (config.host == hostLower) {
return await User.findOne({ usernameLower });
}
2018-03-31 13:55:00 +03:00
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-05 12:50:52 +03:00
throw new Error('self link not found');
2018-03-31 13:55:00 +03:00
}
2018-04-07 07:05:10 +03:00
user = await resolvePerson(self.href, acctLower);
2018-03-31 13:55:00 +03:00
}
return user;
};