1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-03 00:25:57 +09:00
cherrypick/src/remote/resolve-user.ts

32 lines
878 B
TypeScript
Raw Normal View History

2018-03-31 19:55:00 +09:00
import { toUnicode, toASCII } from 'punycode';
2018-04-02 04:15:27 +09:00
import User from '../models/user';
2018-03-31 19:55:00 +09:00
import webFinger from './webfinger';
2018-04-08 15:25:17 +09:00
import config from '../config';
2018-04-17 16:05:50 +09:00
import { createPerson } from './activitypub/models/person';
2018-03-31 19:55:00 +09:00
2018-05-07 03:19:24 +09:00
export default async (username, _host, option?) => {
2018-03-31 19:55:00 +09:00
const usernameLower = username.toLowerCase();
const hostAscii = toASCII(_host).toLowerCase();
const host = toUnicode(hostAscii);
2018-03-31 19:55:00 +09:00
if (config.host == host) {
2018-04-08 15:25:17 +09:00
return await User.findOne({ usernameLower });
}
let user = await User.findOne({ usernameLower, host }, option);
2018-03-31 19:55:00 +09:00
if (user === null) {
const acctLower = `${usernameLower}@${hostAscii}`;
2018-03-31 19:55:00 +09:00
2018-04-09 04:08:56 +09:00
const finger = await webFinger(acctLower);
2018-03-31 19:55:00 +09:00
const self = finger.links.find(link => link.rel && link.rel.toLowerCase() === 'self');
if (!self) {
2018-04-05 18:50:52 +09:00
throw new Error('self link not found');
2018-03-31 19:55:00 +09:00
}
2018-04-09 04:08:56 +09:00
user = await createPerson(self.href);
2018-03-31 19:55:00 +09:00
}
return user;
};