2021-03-24 02:05:37 +00:00
|
|
|
import { URL } from 'url';
|
2019-02-09 04:01:21 +00:00
|
|
|
import * as promiseLimit from 'promise-limit';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
import $, { Context } from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import config from '@/config/index';
|
|
|
|
import Resolver from '../resolver';
|
|
|
|
import { resolveImage } from './image';
|
|
|
|
import { isCollectionOrOrderedCollection, isCollection, IActor, getApId, getOneApHrefNullable, IObject, isPropertyValue, IApPropertyValue, getApType, isActor } from '../type';
|
|
|
|
import { fromHtml } from '../../../mfm/from-html';
|
|
|
|
import { htmlToMfm } from '../misc/html-to-mfm';
|
|
|
|
import { resolveNote, extractEmojis } from './note';
|
|
|
|
import { registerOrFetchInstanceDoc } from '@/services/register-or-fetch-instance-doc';
|
|
|
|
import { extractApHashtags } from './tag';
|
|
|
|
import { apLogger } from '../logger';
|
|
|
|
import { Note } from '@/models/entities/note';
|
|
|
|
import { updateUsertags } from '@/services/update-hashtag';
|
|
|
|
import { Users, Instances, DriveFiles, Followings, UserProfiles, UserPublickeys } from '@/models/index';
|
|
|
|
import { User, IRemoteUser } from '@/models/entities/user';
|
|
|
|
import { Emoji } from '@/models/entities/emoji';
|
|
|
|
import { UserNotePining } from '@/models/entities/user-note-pining';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
|
|
|
import { instanceChart, usersChart } from '@/services/chart/index';
|
|
|
|
import { UserPublickey } from '@/models/entities/user-publickey';
|
|
|
|
import { isDuplicateKeyValueError } from '@/misc/is-duplicate-key-value-error';
|
|
|
|
import { toPuny } from '@/misc/convert-host';
|
|
|
|
import { UserProfile } from '@/models/entities/user-profile';
|
2019-04-11 16:52:25 +00:00
|
|
|
import { getConnection } from 'typeorm';
|
2021-08-19 13:04:15 +00:00
|
|
|
import { toArray } from '@/prelude/array';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { fetchInstanceMetadata } from '@/services/fetch-instance-metadata';
|
|
|
|
import { normalizeForSearch } from '@/misc/normalize-for-search';
|
2019-09-26 19:58:28 +00:00
|
|
|
|
2019-02-03 07:45:13 +00:00
|
|
|
const logger = apLogger;
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2021-08-14 09:11:47 +00:00
|
|
|
const nameLength = 128;
|
|
|
|
const summaryLength = 2048;
|
|
|
|
|
2021-08-17 08:25:19 +00:00
|
|
|
function truncate(input: string, size: number): string;
|
|
|
|
function truncate(input: string | undefined, size: number): string | undefined;
|
|
|
|
function truncate(input: string | undefined, size: number): string | undefined {
|
|
|
|
if (!input || input.length <= size) {
|
|
|
|
return input;
|
|
|
|
} else {
|
|
|
|
return input.substring(0, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-29 07:10:03 +00:00
|
|
|
/**
|
2021-07-10 14:14:57 +00:00
|
|
|
* Validate and convert to actor object
|
|
|
|
* @param x Fetched object
|
2018-08-29 07:10:03 +00:00
|
|
|
* @param uri Fetch target URI
|
|
|
|
*/
|
2021-07-10 14:14:57 +00:00
|
|
|
function validateActor(x: IObject, uri: string): IActor {
|
2019-04-09 15:59:41 +00:00
|
|
|
const expectHost = toPuny(new URL(uri).hostname);
|
2018-08-29 07:10:03 +00:00
|
|
|
|
2018-07-26 08:13:55 +00:00
|
|
|
if (x == null) {
|
2021-07-10 14:14:57 +00:00
|
|
|
throw new Error('invalid Actor: object is null');
|
2018-07-26 08:13:55 +00:00
|
|
|
}
|
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
if (!isActor(x)) {
|
|
|
|
throw new Error(`invalid Actor type '${x.type}'`);
|
2018-07-26 08:13:55 +00:00
|
|
|
}
|
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
const validate = (name: string, value: any, validater: Context) => {
|
|
|
|
const e = validater.test(value);
|
|
|
|
if (e) throw new Error(`invalid Actor: ${name} ${e.message}`);
|
|
|
|
};
|
2018-07-26 08:13:55 +00:00
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
validate('id', x.id, $.str.min(1));
|
|
|
|
validate('inbox', x.inbox, $.str.min(1));
|
|
|
|
validate('preferredUsername', x.preferredUsername, $.str.min(1).max(128).match(/^\w([\w-.]*\w)?$/));
|
2021-08-14 09:11:47 +00:00
|
|
|
|
|
|
|
// These fields are only informational, and some AP software allows these
|
|
|
|
// fields to be very long. If they are too long, we cut them off. This way
|
|
|
|
// we can at least see these users and their activities.
|
|
|
|
validate('name', truncate(x.name, nameLength), $.optional.nullable.str);
|
|
|
|
validate('summary', truncate(x.summary, summaryLength), $.optional.nullable.str);
|
2018-07-26 08:13:55 +00:00
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
const idHost = toPuny(new URL(x.id!).hostname);
|
2018-08-29 07:10:03 +00:00
|
|
|
if (idHost !== expectHost) {
|
2021-07-10 14:14:57 +00:00
|
|
|
throw new Error('invalid Actor: id has different host');
|
2018-08-29 07:10:03 +00:00
|
|
|
}
|
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
if (x.publicKey) {
|
|
|
|
if (typeof x.publicKey.id !== 'string') {
|
|
|
|
throw new Error('invalid Actor: publicKey.id is not a string');
|
|
|
|
}
|
2018-08-29 07:10:03 +00:00
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
const publicKeyIdHost = toPuny(new URL(x.publicKey.id).hostname);
|
|
|
|
if (publicKeyIdHost !== expectHost) {
|
|
|
|
throw new Error('invalid Actor: publicKey.id has different host');
|
|
|
|
}
|
2018-08-29 07:10:03 +00:00
|
|
|
}
|
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
return x;
|
2018-07-26 08:13:55 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
/**
|
|
|
|
* Personをフェッチします。
|
|
|
|
*
|
|
|
|
* Misskeyに対象のPersonが登録されていればそれを返します。
|
|
|
|
*/
|
2019-04-12 16:43:22 +00:00
|
|
|
export async function fetchPerson(uri: string, resolver?: Resolver): Promise<User | null> {
|
2019-04-13 19:17:24 +00:00
|
|
|
if (typeof uri !== 'string') throw new Error('uri is not string');
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
// URIがこのサーバーを指しているならデータベースからフェッチ
|
|
|
|
if (uri.startsWith(config.url + '/')) {
|
2019-04-07 12:50:36 +00:00
|
|
|
const id = uri.split('/').pop();
|
2019-04-12 16:43:22 +00:00
|
|
|
return await Users.findOne(id).then(x => x || null);
|
2018-04-08 19:08:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//#region このサーバーに既に登録されていたらそれを返す
|
2019-04-07 12:50:36 +00:00
|
|
|
const exist = await Users.findOne({ uri });
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
if (exist) {
|
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Personを作成します。
|
|
|
|
*/
|
2019-04-07 12:50:36 +00:00
|
|
|
export async function createPerson(uri: string, resolver?: Resolver): Promise<User> {
|
2019-04-13 19:17:24 +00:00
|
|
|
if (typeof uri !== 'string') throw new Error('uri is not string');
|
2018-08-29 07:10:03 +00:00
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
if (resolver == null) resolver = new Resolver();
|
|
|
|
|
2018-08-29 07:10:03 +00:00
|
|
|
const object = await resolver.resolve(uri) as any;
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
const person = validateActor(object, uri);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2019-02-03 07:45:13 +00:00
|
|
|
logger.info(`Creating the Person: ${person.id}`);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2019-04-09 14:59:32 +00:00
|
|
|
const host = toPuny(new URL(object.id).hostname);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
const { fields } = analyzeAttachments(person.attachment || []);
|
2018-12-11 11:18:12 +00:00
|
|
|
|
2021-02-07 01:43:34 +00:00
|
|
|
const tags = extractApHashtags(person.tag).map(tag => normalizeForSearch(tag)).splice(0, 32);
|
2019-01-31 11:42:45 +00:00
|
|
|
|
2021-05-31 04:04:13 +00:00
|
|
|
const isBot = getApType(object) === 'Service';
|
2018-06-23 10:18:14 +00:00
|
|
|
|
2020-06-21 05:09:01 +00:00
|
|
|
const bday = person['vcard:bday']?.match(/^\d{4}-\d{2}-\d{2}/);
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
// Create user
|
2018-04-19 09:58:57 +00:00
|
|
|
let user: IRemoteUser;
|
|
|
|
try {
|
2019-04-11 16:52:25 +00:00
|
|
|
// Start transaction
|
|
|
|
await getConnection().transaction(async transactionalEntityManager => {
|
|
|
|
user = await transactionalEntityManager.save(new User({
|
|
|
|
id: genId(),
|
|
|
|
avatarId: null,
|
|
|
|
bannerId: null,
|
2019-04-11 17:22:22 +00:00
|
|
|
createdAt: new Date(),
|
2019-04-11 16:52:25 +00:00
|
|
|
lastFetchedAt: new Date(),
|
2021-08-17 08:25:19 +00:00
|
|
|
name: truncate(person.name, nameLength),
|
2019-10-15 19:03:51 +00:00
|
|
|
isLocked: !!person.manuallyApprovesFollowers,
|
2020-12-11 12:16:20 +00:00
|
|
|
isExplorable: !!person.discoverable,
|
2019-04-11 16:52:25 +00:00
|
|
|
username: person.preferredUsername,
|
2019-10-28 11:34:01 +00:00
|
|
|
usernameLower: person.preferredUsername!.toLowerCase(),
|
2019-04-11 16:52:25 +00:00
|
|
|
host,
|
|
|
|
inbox: person.inbox,
|
|
|
|
sharedInbox: person.sharedInbox || (person.endpoints ? person.endpoints.sharedInbox : undefined),
|
2021-02-06 02:50:33 +00:00
|
|
|
followersUri: person.followers ? getApId(person.followers) : undefined,
|
2019-10-28 11:34:01 +00:00
|
|
|
featured: person.featured ? getApId(person.featured) : undefined,
|
2019-04-11 16:52:25 +00:00
|
|
|
uri: person.id,
|
|
|
|
tags,
|
|
|
|
isBot,
|
|
|
|
isCat: (person as any).isCat === true
|
|
|
|
})) as IRemoteUser;
|
|
|
|
|
|
|
|
await transactionalEntityManager.save(new UserProfile({
|
|
|
|
userId: user.id,
|
2021-08-17 08:25:19 +00:00
|
|
|
description: person.summary ? htmlToMfm(truncate(person.summary, summaryLength), person.tag) : null,
|
2020-04-11 09:27:58 +00:00
|
|
|
url: getOneApHrefNullable(person.url),
|
2019-04-11 16:52:25 +00:00
|
|
|
fields,
|
2020-06-21 05:09:01 +00:00
|
|
|
birthday: bday ? bday[0] : null,
|
|
|
|
location: person['vcard:Address'] || null,
|
2019-04-11 16:52:25 +00:00
|
|
|
userHost: host
|
|
|
|
}));
|
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
if (person.publicKey) {
|
|
|
|
await transactionalEntityManager.save(new UserPublickey({
|
|
|
|
userId: user.id,
|
|
|
|
keyId: person.publicKey.id,
|
|
|
|
keyPem: person.publicKey.publicKeyPem
|
|
|
|
}));
|
|
|
|
}
|
2019-04-11 16:52:25 +00:00
|
|
|
});
|
2018-04-19 09:58:57 +00:00
|
|
|
} catch (e) {
|
|
|
|
// duplicate key error
|
2019-04-07 12:50:36 +00:00
|
|
|
if (isDuplicateKeyValueError(e)) {
|
2020-04-03 13:51:38 +00:00
|
|
|
// /users/@a => /users/:id のように入力がaliasなときにエラーになることがあるのを対応
|
|
|
|
const u = await Users.findOne({
|
|
|
|
uri: person.id
|
|
|
|
});
|
2018-04-19 09:58:57 +00:00
|
|
|
|
2020-04-03 13:51:38 +00:00
|
|
|
if (u) {
|
|
|
|
user = u as IRemoteUser;
|
|
|
|
} else {
|
|
|
|
throw new Error('already registered');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
logger.error(e);
|
|
|
|
throw e;
|
|
|
|
}
|
2018-04-19 09:58:57 +00:00
|
|
|
}
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2018-10-23 21:17:55 +00:00
|
|
|
// Register host
|
2019-02-07 06:00:44 +00:00
|
|
|
registerOrFetchInstanceDoc(host).then(i => {
|
2019-04-07 12:50:36 +00:00
|
|
|
Instances.increment({ id: i.id }, 'usersCount', 1);
|
2019-02-08 07:58:57 +00:00
|
|
|
instanceChart.newUser(i.host);
|
2020-07-26 02:04:07 +00:00
|
|
|
fetchInstanceMetadata(i);
|
2018-10-23 21:17:55 +00:00
|
|
|
});
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
usersChart.update(user!, true);
|
2018-06-16 01:40:53 +00:00
|
|
|
|
2019-02-17 16:11:14 +00:00
|
|
|
// ハッシュタグ更新
|
2019-08-18 03:47:45 +00:00
|
|
|
updateUsertags(user!, tags);
|
2019-02-17 14:41:47 +00:00
|
|
|
|
2019-08-25 07:11:20 +00:00
|
|
|
//#region アバターとヘッダー画像をフェッチ
|
2019-11-17 21:25:47 +00:00
|
|
|
const [avatar, banner] = await Promise.all([
|
2018-04-08 19:08:56 +00:00
|
|
|
person.icon,
|
|
|
|
person.image
|
|
|
|
].map(img =>
|
|
|
|
img == null
|
|
|
|
? Promise.resolve(null)
|
2019-04-12 16:43:22 +00:00
|
|
|
: resolveImage(user!, img).catch(() => null)
|
2019-11-17 21:25:47 +00:00
|
|
|
));
|
2018-06-09 23:41:57 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const avatarId = avatar ? avatar.id : null;
|
|
|
|
const bannerId = banner ? banner.id : null;
|
2019-11-17 21:27:22 +00:00
|
|
|
const avatarUrl = avatar ? DriveFiles.getPublicUrl(avatar, true) : null;
|
2019-04-10 05:10:00 +00:00
|
|
|
const bannerUrl = banner ? DriveFiles.getPublicUrl(banner) : null;
|
2020-07-18 15:24:07 +00:00
|
|
|
const avatarBlurhash = avatar ? avatar.blurhash : null;
|
|
|
|
const bannerBlurhash = banner ? banner.blurhash : null;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
await Users.update(user!.id, {
|
2019-04-07 12:50:36 +00:00
|
|
|
avatarId,
|
|
|
|
bannerId,
|
|
|
|
avatarUrl,
|
|
|
|
bannerUrl,
|
2020-07-18 15:24:07 +00:00
|
|
|
avatarBlurhash,
|
|
|
|
bannerBlurhash
|
2018-06-09 23:41:57 +00:00
|
|
|
});
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
user!.avatarId = avatarId;
|
|
|
|
user!.bannerId = bannerId;
|
|
|
|
user!.avatarUrl = avatarUrl;
|
|
|
|
user!.bannerUrl = bannerUrl;
|
2020-07-18 15:24:07 +00:00
|
|
|
user!.avatarBlurhash = avatarBlurhash;
|
|
|
|
user!.bannerBlurhash = bannerBlurhash;
|
2018-04-08 19:08:56 +00:00
|
|
|
//#endregion
|
|
|
|
|
2018-12-06 01:02:04 +00:00
|
|
|
//#region カスタム絵文字取得
|
2019-04-12 16:43:22 +00:00
|
|
|
const emojis = await extractEmojis(person.tag || [], host).catch(e => {
|
2019-02-03 07:45:13 +00:00
|
|
|
logger.info(`extractEmojis: ${e}`);
|
2019-04-07 12:50:36 +00:00
|
|
|
return [] as Emoji[];
|
2018-12-06 01:02:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const emojiNames = emojis.map(emoji => emoji.name);
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
await Users.update(user!.id, {
|
2019-04-07 12:50:36 +00:00
|
|
|
emojis: emojiNames
|
2018-12-06 01:02:04 +00:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
await updateFeatured(user!.id).catch(err => logger.error(err));
|
2018-10-23 21:17:55 +00:00
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
return user!;
|
2018-04-08 19:08:56 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 06:30:58 +00:00
|
|
|
/**
|
|
|
|
* Personの情報を更新します。
|
|
|
|
* Misskeyに対象のPersonが登録されていなければ無視します。
|
2018-09-01 08:53:38 +00:00
|
|
|
* @param uri URI of Person
|
|
|
|
* @param resolver Resolver
|
|
|
|
* @param hint Hint of Person object (この値が正当なPersonの場合、Remote resolveをせずに更新に利用します)
|
2018-04-17 06:30:58 +00:00
|
|
|
*/
|
2019-04-12 16:43:22 +00:00
|
|
|
export async function updatePerson(uri: string, resolver?: Resolver | null, hint?: object): Promise<void> {
|
2019-04-13 19:17:24 +00:00
|
|
|
if (typeof uri !== 'string') throw new Error('uri is not string');
|
2018-04-17 06:30:58 +00:00
|
|
|
|
|
|
|
// URIがこのサーバーを指しているならスキップ
|
|
|
|
if (uri.startsWith(config.url + '/')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//#region このサーバーに既に登録されているか
|
2019-04-07 12:50:36 +00:00
|
|
|
const exist = await Users.findOne({ uri }) as IRemoteUser;
|
2018-04-17 06:30:58 +00:00
|
|
|
|
|
|
|
if (exist == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
if (resolver == null) resolver = new Resolver();
|
|
|
|
|
2018-09-01 08:53:38 +00:00
|
|
|
const object = hint || await resolver.resolve(uri) as any;
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
const person = validateActor(object, uri);
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2019-02-03 07:45:13 +00:00
|
|
|
logger.info(`Updating the Person: ${person.id}`);
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2019-08-25 07:11:20 +00:00
|
|
|
// アバターとヘッダー画像をフェッチ
|
2019-11-17 21:25:47 +00:00
|
|
|
const [avatar, banner] = await Promise.all([
|
2018-04-17 06:30:58 +00:00
|
|
|
person.icon,
|
|
|
|
person.image
|
|
|
|
].map(img =>
|
|
|
|
img == null
|
|
|
|
? Promise.resolve(null)
|
2018-10-21 09:35:36 +00:00
|
|
|
: resolveImage(exist, img).catch(() => null)
|
2019-11-17 21:25:47 +00:00
|
|
|
));
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2018-12-06 01:02:04 +00:00
|
|
|
// カスタム絵文字取得
|
2019-04-12 16:43:22 +00:00
|
|
|
const emojis = await extractEmojis(person.tag || [], exist.host).catch(e => {
|
2019-02-03 07:45:13 +00:00
|
|
|
logger.info(`extractEmojis: ${e}`);
|
2019-04-07 12:50:36 +00:00
|
|
|
return [] as Emoji[];
|
2018-12-06 01:02:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const emojiNames = emojis.map(emoji => emoji.name);
|
|
|
|
|
2020-01-31 22:16:52 +00:00
|
|
|
const { fields } = analyzeAttachments(person.attachment || []);
|
2018-12-11 11:18:12 +00:00
|
|
|
|
2021-02-07 01:43:34 +00:00
|
|
|
const tags = extractApHashtags(person.tag).map(tag => normalizeForSearch(tag)).splice(0, 32);
|
2019-01-31 11:42:45 +00:00
|
|
|
|
2020-06-21 05:09:01 +00:00
|
|
|
const bday = person['vcard:bday']?.match(/^\d{4}-\d{2}-\d{2}/);
|
|
|
|
|
2019-01-21 02:15:36 +00:00
|
|
|
const updates = {
|
|
|
|
lastFetchedAt: new Date(),
|
|
|
|
inbox: person.inbox,
|
|
|
|
sharedInbox: person.sharedInbox || (person.endpoints ? person.endpoints.sharedInbox : undefined),
|
2021-02-06 02:50:33 +00:00
|
|
|
followersUri: person.followers ? getApId(person.followers) : undefined,
|
2019-01-21 02:15:36 +00:00
|
|
|
featured: person.featured,
|
|
|
|
emojis: emojiNames,
|
2021-08-17 08:25:19 +00:00
|
|
|
name: truncate(person.name, nameLength),
|
2019-01-31 11:42:45 +00:00
|
|
|
tags,
|
2021-05-31 04:04:13 +00:00
|
|
|
isBot: getApType(object) === 'Service',
|
2019-01-21 02:15:36 +00:00
|
|
|
isCat: (person as any).isCat === true,
|
2019-10-15 19:03:51 +00:00
|
|
|
isLocked: !!person.manuallyApprovesFollowers,
|
2020-12-11 12:16:20 +00:00
|
|
|
isExplorable: !!person.discoverable,
|
2019-04-07 12:50:36 +00:00
|
|
|
} as Partial<User>;
|
2019-01-21 02:15:36 +00:00
|
|
|
|
|
|
|
if (avatar) {
|
2019-04-07 12:50:36 +00:00
|
|
|
updates.avatarId = avatar.id;
|
2019-11-17 21:27:22 +00:00
|
|
|
updates.avatarUrl = DriveFiles.getPublicUrl(avatar, true);
|
2020-07-18 15:24:07 +00:00
|
|
|
updates.avatarBlurhash = avatar.blurhash;
|
2019-01-21 02:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (banner) {
|
2019-04-07 12:50:36 +00:00
|
|
|
updates.bannerId = banner.id;
|
|
|
|
updates.bannerUrl = DriveFiles.getPublicUrl(banner);
|
2020-07-18 15:24:07 +00:00
|
|
|
updates.bannerBlurhash = banner.blurhash;
|
2019-01-21 02:15:36 +00:00
|
|
|
}
|
|
|
|
|
2018-04-17 06:30:58 +00:00
|
|
|
// Update user
|
2019-04-07 12:50:36 +00:00
|
|
|
await Users.update(exist.id, updates);
|
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
if (person.publicKey) {
|
|
|
|
await UserPublickeys.update({ userId: exist.id }, {
|
|
|
|
keyId: person.publicKey.id,
|
|
|
|
keyPem: person.publicKey.publicKeyPem
|
|
|
|
});
|
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
await UserProfiles.update({ userId: exist.id }, {
|
2020-04-11 09:27:58 +00:00
|
|
|
url: getOneApHrefNullable(person.url),
|
2019-04-18 16:00:17 +00:00
|
|
|
fields,
|
2021-08-17 08:25:19 +00:00
|
|
|
description: person.summary ? htmlToMfm(truncate(person.summary, summaryLength), person.tag) : null,
|
2020-06-21 05:09:01 +00:00
|
|
|
birthday: bday ? bday[0] : null,
|
|
|
|
location: person['vcard:Address'] || null,
|
2018-04-17 06:30:58 +00:00
|
|
|
});
|
2018-10-02 07:27:36 +00:00
|
|
|
|
2019-02-17 14:41:47 +00:00
|
|
|
// ハッシュタグ更新
|
2019-08-18 03:47:45 +00:00
|
|
|
updateUsertags(exist, tags);
|
2019-02-17 14:41:47 +00:00
|
|
|
|
2018-12-21 15:12:34 +00:00
|
|
|
// 該当ユーザーが既にフォロワーになっていた場合はFollowingもアップデートする
|
2019-04-07 12:50:36 +00:00
|
|
|
await Followings.update({
|
|
|
|
followerId: exist.id
|
2019-01-06 08:45:53 +00:00
|
|
|
}, {
|
2019-04-07 12:50:36 +00:00
|
|
|
followerSharedInbox: person.sharedInbox || (person.endpoints ? person.endpoints.sharedInbox : undefined)
|
2018-12-21 15:12:34 +00:00
|
|
|
});
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
await updateFeatured(exist.id).catch(err => logger.error(err));
|
2018-04-17 06:30:58 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
/**
|
|
|
|
* Personを解決します。
|
|
|
|
*
|
|
|
|
* Misskeyに対象のPersonが登録されていればそれを返し、そうでなければ
|
|
|
|
* リモートサーバーからフェッチしてMisskeyに登録しそれを返します。
|
|
|
|
*/
|
2019-04-12 16:43:22 +00:00
|
|
|
export async function resolvePerson(uri: string, resolver?: Resolver): Promise<User> {
|
2019-04-13 19:17:24 +00:00
|
|
|
if (typeof uri !== 'string') throw new Error('uri is not string');
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
//#region このサーバーに既に登録されていたらそれを返す
|
|
|
|
const exist = await fetchPerson(uri);
|
|
|
|
|
|
|
|
if (exist) {
|
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
// リモートサーバーからフェッチしてきて登録
|
2018-10-02 07:27:36 +00:00
|
|
|
if (resolver == null) resolver = new Resolver();
|
|
|
|
return await createPerson(uri, resolver);
|
|
|
|
}
|
|
|
|
|
2019-01-24 08:33:39 +00:00
|
|
|
const services: {
|
|
|
|
[x: string]: (id: string, username: string) => any
|
|
|
|
} = {
|
|
|
|
'misskey:authentication:twitter': (userId, screenName) => ({ userId, screenName }),
|
|
|
|
'misskey:authentication:github': (id, login) => ({ id, login }),
|
|
|
|
'misskey:authentication:discord': (id, name) => $discord(id, name)
|
|
|
|
};
|
|
|
|
|
|
|
|
const $discord = (id: string, name: string) => {
|
|
|
|
if (typeof name !== 'string')
|
|
|
|
name = 'unknown#0000';
|
|
|
|
const [username, discriminator] = name.split('#');
|
|
|
|
return { id, username, discriminator };
|
|
|
|
};
|
|
|
|
|
2020-04-03 13:51:38 +00:00
|
|
|
function addService(target: { [x: string]: any }, source: IApPropertyValue) {
|
2019-01-24 08:33:39 +00:00
|
|
|
const service = services[source.name];
|
|
|
|
|
|
|
|
if (typeof source.value !== 'string')
|
|
|
|
source.value = 'unknown';
|
|
|
|
|
|
|
|
const [id, username] = source.value.split('@');
|
|
|
|
|
|
|
|
if (service)
|
|
|
|
target[source.name.split(':')[2]] = service(id, username);
|
|
|
|
}
|
2018-12-11 11:18:12 +00:00
|
|
|
|
2020-04-03 13:51:38 +00:00
|
|
|
export function analyzeAttachments(attachments: IObject | IObject[] | undefined) {
|
2019-01-24 08:33:39 +00:00
|
|
|
const fields: {
|
|
|
|
name: string,
|
|
|
|
value: string
|
|
|
|
}[] = [];
|
|
|
|
const services: { [x: string]: any } = {};
|
|
|
|
|
2019-04-12 16:43:22 +00:00
|
|
|
if (Array.isArray(attachments)) {
|
|
|
|
for (const attachment of attachments.filter(isPropertyValue)) {
|
2020-04-03 13:51:38 +00:00
|
|
|
if (isPropertyValue(attachment.identifier)) {
|
|
|
|
addService(services, attachment.identifier);
|
2019-04-12 16:43:22 +00:00
|
|
|
} else {
|
2019-01-24 08:33:39 +00:00
|
|
|
fields.push({
|
2020-04-03 13:51:38 +00:00
|
|
|
name: attachment.name,
|
|
|
|
value: fromHtml(attachment.value)
|
2019-01-24 08:33:39 +00:00
|
|
|
});
|
2019-04-12 16:43:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-24 08:33:39 +00:00
|
|
|
|
|
|
|
return { fields, services };
|
2018-12-11 11:18:12 +00:00
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
export async function updateFeatured(userId: User['id']) {
|
2021-02-13 06:33:38 +00:00
|
|
|
const user = await Users.findOneOrFail(userId);
|
2019-04-07 12:50:36 +00:00
|
|
|
if (!Users.isRemoteUser(user)) return;
|
2018-10-02 07:27:36 +00:00
|
|
|
if (!user.featured) return;
|
|
|
|
|
2019-02-03 07:45:13 +00:00
|
|
|
logger.info(`Updating the featured: ${user.uri}`);
|
2018-10-02 07:27:36 +00:00
|
|
|
|
|
|
|
const resolver = new Resolver();
|
|
|
|
|
|
|
|
// Resolve to (Ordered)Collection Object
|
|
|
|
const collection = await resolver.resolveCollection(user.featured);
|
|
|
|
if (!isCollectionOrOrderedCollection(collection)) throw new Error(`Object is not Collection or OrderedCollection`);
|
|
|
|
|
|
|
|
// Resolve to Object(may be Note) arrays
|
|
|
|
const unresolvedItems = isCollection(collection) ? collection.items : collection.orderedItems;
|
2019-09-26 19:58:28 +00:00
|
|
|
const items = await Promise.all(toArray(unresolvedItems).map(x => resolver.resolve(x)));
|
2018-10-02 07:27:36 +00:00
|
|
|
|
|
|
|
// Resolve and regist Notes
|
2019-04-12 16:43:22 +00:00
|
|
|
const limit = promiseLimit<Note | null>(2);
|
2018-10-02 07:27:36 +00:00
|
|
|
const featuredNotes = await Promise.all(items
|
2021-05-31 04:04:13 +00:00
|
|
|
.filter(item => getApType(item) === 'Note') // TODO: Noteでなくてもいいかも
|
2018-10-02 07:27:36 +00:00
|
|
|
.slice(0, 5)
|
2019-04-12 16:43:22 +00:00
|
|
|
.map(item => limit(() => resolveNote(item, resolver))));
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-02-17 12:34:51 +00:00
|
|
|
await getConnection().transaction(async transactionalEntityManager => {
|
|
|
|
await transactionalEntityManager.delete(UserNotePining, { userId: user.id });
|
|
|
|
|
|
|
|
// とりあえずidを別の時間で生成して順番を維持
|
|
|
|
let td = 0;
|
|
|
|
for (const note of featuredNotes.filter(note => note != null)) {
|
|
|
|
td -= 1000;
|
|
|
|
transactionalEntityManager.insert(UserNotePining, {
|
|
|
|
id: genId(new Date(Date.now() + td)),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
noteId: note!.id
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2018-04-08 19:08:56 +00:00
|
|
|
}
|