2018-03-31 05:55:00 -05:00
|
|
|
import { toUnicode, toASCII } from 'punycode';
|
2018-10-30 12:16:13 -05:00
|
|
|
import User, { IUser, IRemoteUser } 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-10-30 12:16:13 -05:00
|
|
|
import { createPerson, updatePerson } from './activitypub/models/person';
|
|
|
|
import { URL } from 'url';
|
2019-02-02 13:04:57 -06:00
|
|
|
import { remoteLogger } from './logger';
|
2018-03-31 05:55:00 -05:00
|
|
|
|
2019-02-02 13:04:57 -06:00
|
|
|
const logger = remoteLogger.createSubLogger('resolve-user');
|
2018-10-30 12:16:13 -05:00
|
|
|
|
|
|
|
export default async (username: string, _host: string, option?: any, resync?: boolean): 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) {
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`return local user: ${usernameLower}`);
|
2018-10-27 17:49:58 -05:00
|
|
|
return await User.findOne({ usernameLower, host: null });
|
2018-05-06 14:26:45 -05:00
|
|
|
}
|
|
|
|
|
2018-11-10 22:11:16 -06:00
|
|
|
const configHostAscii = toASCII(config.host).toLowerCase();
|
|
|
|
const configHost = toUnicode(configHostAscii);
|
|
|
|
|
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-11-10 22:11:16 -06:00
|
|
|
if (configHost == host) {
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`return local user: ${usernameLower}`);
|
2018-08-22 21:58:44 -05:00
|
|
|
return await User.findOne({ usernameLower, host: null });
|
2018-04-08 01:25:17 -05:00
|
|
|
}
|
|
|
|
|
2018-10-30 12:16:13 -05:00
|
|
|
const user = await User.findOne({ usernameLower, host }, option);
|
|
|
|
|
|
|
|
const acctLower = `${usernameLower}@${hostAscii}`;
|
2018-03-31 05:55:00 -05:00
|
|
|
|
|
|
|
if (user === null) {
|
2018-10-30 12:16:13 -05:00
|
|
|
const self = await resolveSelf(acctLower);
|
|
|
|
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`return new remote user: ${acctLower}`);
|
2018-10-30 12:16:13 -05:00
|
|
|
return await createPerson(self.href);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (resync) {
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`try resync: ${acctLower}`);
|
2018-10-30 12:16:13 -05:00
|
|
|
const self = await resolveSelf(acctLower);
|
|
|
|
|
|
|
|
if ((user as IRemoteUser).uri !== self.href) {
|
|
|
|
// if uri mismatch, Fix (user@host <=> AP's Person id(IRemoteUser.uri)) mapping.
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`uri missmatch: ${acctLower}`);
|
|
|
|
logger.info(`recovery missmatch uri for (username=${username}, host=${host}) from ${(user as IRemoteUser).uri} to ${self.href}`);
|
2018-03-31 05:55:00 -05:00
|
|
|
|
2018-10-30 12:16:13 -05:00
|
|
|
// validate uri
|
|
|
|
const uri = new URL(self.href);
|
|
|
|
if (uri.hostname !== hostAscii) {
|
|
|
|
throw new Error(`Invalied uri`);
|
|
|
|
}
|
|
|
|
|
|
|
|
await User.update({
|
|
|
|
usernameLower,
|
|
|
|
host: host
|
2019-02-01 22:57:26 -06:00
|
|
|
}, {
|
2018-10-30 12:16:13 -05:00
|
|
|
$set: {
|
|
|
|
uri: self.href
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`uri is fine: ${acctLower}`);
|
2018-03-31 05:55:00 -05:00
|
|
|
}
|
|
|
|
|
2018-10-30 12:16:13 -05:00
|
|
|
await updatePerson(self.href);
|
|
|
|
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`return resynced remote user: ${acctLower}`);
|
2018-10-30 12:16:13 -05:00
|
|
|
return await User.findOne({ uri: self.href });
|
|
|
|
}
|
2018-03-31 05:55:00 -05:00
|
|
|
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`return existing remote user: ${acctLower}`);
|
2018-03-31 05:55:00 -05:00
|
|
|
return user;
|
|
|
|
};
|
2018-10-30 12:16:13 -05:00
|
|
|
|
|
|
|
async function resolveSelf(acctLower: string) {
|
2019-02-02 13:04:57 -06:00
|
|
|
logger.info(`WebFinger for ${acctLower}`);
|
2018-10-30 12:16:13 -05:00
|
|
|
const finger = await webFinger(acctLower);
|
|
|
|
const self = finger.links.find(link => link.rel && link.rel.toLowerCase() === 'self');
|
|
|
|
if (!self) {
|
|
|
|
throw new Error('self link not found');
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|