2018-03-31 05:55:00 -05:00
|
|
|
import { toUnicode, toASCII } from 'punycode';
|
2018-05-06 14:08:39 -05:00
|
|
|
import User, { IUser } from '../models/user';
|
2018-03-31 05:55:00 -05:00
|
|
|
import webFinger from './webfinger';
|
2018-04-08 01:25:17 -05:00
|
|
|
import config from '../config';
|
2018-04-17 02:05:50 -05:00
|
|
|
import { createPerson } from './activitypub/models/person';
|
2018-03-31 05:55:00 -05:00
|
|
|
|
2018-06-18 00:28:43 -05:00
|
|
|
export default async (username: string, _host: string, option?: any): Promise<IUser> => {
|
2018-03-31 05:55:00 -05:00
|
|
|
const usernameLower = username.toLowerCase();
|
2018-05-06 14:26:45 -05:00
|
|
|
|
|
|
|
if (_host == null) {
|
2018-10-27 17:49:58 -05:00
|
|
|
return await User.findOne({ usernameLower, host: null });
|
2018-05-06 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
2018-04-14 00:39:07 -05:00
|
|
|
const hostAscii = toASCII(_host).toLowerCase();
|
|
|
|
const host = toUnicode(hostAscii);
|
2018-03-31 05:55:00 -05:00
|
|
|
|
2018-04-14 00:39:07 -05:00
|
|
|
if (config.host == host) {
|
2018-08-22 21:58:44 -05:00
|
|
|
return await User.findOne({ usernameLower, host: null });
|
2018-04-08 01:25:17 -05:00
|
|
|
}
|
|
|
|
|
2018-04-14 00:39:07 -05:00
|
|
|
let user = await User.findOne({ usernameLower, host }, option);
|
2018-03-31 05:55:00 -05:00
|
|
|
|
|
|
|
if (user === null) {
|
2018-04-14 00:39:07 -05:00
|
|
|
const acctLower = `${usernameLower}@${hostAscii}`;
|
2018-03-31 05:55:00 -05:00
|
|
|
|
2018-04-08 14:08:56 -05:00
|
|
|
const finger = await webFinger(acctLower);
|
2018-03-31 05:55:00 -05:00
|
|
|
const self = finger.links.find(link => link.rel && link.rel.toLowerCase() === 'self');
|
|
|
|
if (!self) {
|
2018-04-05 04:50:52 -05:00
|
|
|
throw new Error('self link not found');
|
2018-03-31 05:55:00 -05:00
|
|
|
}
|
|
|
|
|
2018-04-08 14:08:56 -05:00
|
|
|
user = await createPerson(self.href);
|
2018-03-31 05:55:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return user;
|
|
|
|
};
|