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