2019-02-09 04:01:21 +00:00
|
|
|
import * as promiseLimit from 'promise-limit';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2021-03-23 08:43:07 +00:00
|
|
|
import config from '@/config';
|
2018-04-08 19:08:56 +00:00
|
|
|
import Resolver from '../resolver';
|
|
|
|
import { resolveImage } from './image';
|
2020-04-11 09:27:58 +00:00
|
|
|
import { isCollectionOrOrderedCollection, isCollection, IPerson, getApId, getOneApHrefNullable, IObject, isPropertyValue, IApPropertyValue } from '../type';
|
2020-04-26 02:48:09 +00:00
|
|
|
import { fromHtml } from '../../../mfm/from-html';
|
2020-04-03 13:51:38 +00:00
|
|
|
import { htmlToMfm } from '../misc/html-to-mfm';
|
2018-12-06 01:02:04 +00:00
|
|
|
import { resolveNote, extractEmojis } from './note';
|
2019-02-07 06:00:44 +00:00
|
|
|
import { registerOrFetchInstanceDoc } from '../../../services/register-or-fetch-instance-doc';
|
2020-04-03 13:51:38 +00:00
|
|
|
import { extractApHashtags } from './tag';
|
2019-02-03 07:45:13 +00:00
|
|
|
import { apLogger } from '../logger';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { Note } from '../../../models/entities/note';
|
2019-08-18 03:47:45 +00:00
|
|
|
import { updateUsertags } from '../../../services/update-hashtag';
|
2021-02-17 12:34:51 +00:00
|
|
|
import { Users, Instances, DriveFiles, Followings, UserProfiles, UserPublickeys } from '../../../models';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { User, IRemoteUser } from '../../../models/entities/user';
|
|
|
|
import { Emoji } from '../../../models/entities/emoji';
|
2020-08-18 13:44:21 +00:00
|
|
|
import { UserNotePining } from '../../../models/entities/user-note-pining';
|
2021-03-23 08:43:07 +00:00
|
|
|
import { genId } from '@/misc/gen-id';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { instanceChart, usersChart } from '../../../services/chart';
|
|
|
|
import { UserPublickey } from '../../../models/entities/user-publickey';
|
2021-03-23 08:43:07 +00:00
|
|
|
import { isDuplicateKeyValueError } from '@/misc/is-duplicate-key-value-error';
|
|
|
|
import { toPuny } from '@/misc/convert-host';
|
2019-04-10 06:04:27 +00:00
|
|
|
import { UserProfile } from '../../../models/entities/user-profile';
|
2019-04-10 18:09:12 +00:00
|
|
|
import { validActor } from '../../../remote/activitypub/type';
|
2019-04-11 16:52:25 +00:00
|
|
|
import { getConnection } from 'typeorm';
|
2019-09-26 19:58:28 +00:00
|
|
|
import { toArray } from '../../../prelude/array';
|
2020-07-26 02:04:07 +00:00
|
|
|
import { fetchInstanceMetadata } from '../../../services/fetch-instance-metadata';
|
2021-03-23 08:43:07 +00:00
|
|
|
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
|
|
|
|
2018-08-29 07:10:03 +00:00
|
|
|
/**
|
|
|
|
* Validate Person object
|
|
|
|
* @param x Fetched person object
|
|
|
|
* @param uri Fetch target URI
|
|
|
|
*/
|
|
|
|
function validatePerson(x: any, uri: string) {
|
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) {
|
|
|
|
return new Error('invalid person: object is null');
|
|
|
|
}
|
|
|
|
|
2019-04-10 18:09:12 +00:00
|
|
|
if (!validActor.includes(x.type)) {
|
2018-07-26 08:13:55 +00:00
|
|
|
return new Error(`invalid person: object is not a person or service '${x.type}'`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof x.preferredUsername !== 'string') {
|
|
|
|
return new Error('invalid person: preferredUsername is not a string');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof x.inbox !== 'string') {
|
|
|
|
return new Error('invalid person: inbox is not a string');
|
|
|
|
}
|
|
|
|
|
2019-06-14 15:07:41 +00:00
|
|
|
if (!Users.validateRemoteUsername.ok(x.preferredUsername)) {
|
2018-07-26 08:13:55 +00:00
|
|
|
return new Error('invalid person: invalid username');
|
|
|
|
}
|
|
|
|
|
2019-06-14 15:07:41 +00:00
|
|
|
if (x.name != null && x.name != '') {
|
|
|
|
if (!Users.validateName.ok(x.name)) {
|
|
|
|
return new Error('invalid person: invalid name');
|
|
|
|
}
|
2018-07-26 08:13:55 +00:00
|
|
|
}
|
|
|
|
|
2018-08-29 07:10:03 +00:00
|
|
|
if (typeof x.id !== 'string') {
|
|
|
|
return new Error('invalid person: id is not a string');
|
|
|
|
}
|
|
|
|
|
2019-04-09 15:59:41 +00:00
|
|
|
const idHost = toPuny(new URL(x.id).hostname);
|
2018-08-29 07:10:03 +00:00
|
|
|
if (idHost !== expectHost) {
|
|
|
|
return new Error('invalid person: id has different host');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof x.publicKey.id !== 'string') {
|
|
|
|
return new Error('invalid person: publicKey.id is not a string');
|
|
|
|
}
|
|
|
|
|
2019-04-09 15:59:41 +00:00
|
|
|
const publicKeyIdHost = toPuny(new URL(x.publicKey.id).hostname);
|
2018-08-29 07:10:03 +00:00
|
|
|
if (publicKeyIdHost !== expectHost) {
|
|
|
|
return new Error('invalid person: publicKey.id has different host');
|
|
|
|
}
|
|
|
|
|
2018-07-26 08:13:55 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-08-29 07:10:03 +00:00
|
|
|
const err = validatePerson(object, uri);
|
2018-06-23 10:16:50 +00:00
|
|
|
|
2018-07-26 08:13:55 +00:00
|
|
|
if (err) {
|
|
|
|
throw err;
|
2018-04-08 19:08:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const person: IPerson = object;
|
|
|
|
|
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
|
|
|
|
2020-04-03 23:46:54 +00:00
|
|
|
const isBot = object.type === '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(),
|
|
|
|
name: person.name,
|
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,
|
2020-04-03 13:51:38 +00:00
|
|
|
description: person.summary ? htmlToMfm(person.summary, 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
|
|
|
|
}));
|
|
|
|
|
|
|
|
await transactionalEntityManager.save(new UserPublickey({
|
|
|
|
userId: user.id,
|
|
|
|
keyId: person.publicKey.id,
|
|
|
|
keyPem: person.publicKey.publicKeyPem
|
|
|
|
}));
|
|
|
|
});
|
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
|
|
|
|
2018-08-29 07:10:03 +00:00
|
|
|
const err = validatePerson(object, uri);
|
2018-07-26 08:13:55 +00:00
|
|
|
|
|
|
|
if (err) {
|
|
|
|
throw err;
|
2018-04-17 06:30:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const person: IPerson = object;
|
|
|
|
|
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,
|
|
|
|
name: person.name,
|
2019-01-31 11:42:45 +00:00
|
|
|
tags,
|
2020-04-03 23:46:54 +00:00
|
|
|
isBot: object.type === '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);
|
|
|
|
|
|
|
|
await UserPublickeys.update({ userId: exist.id }, {
|
|
|
|
keyId: person.publicKey.id,
|
|
|
|
keyPem: person.publicKey.publicKeyPem
|
|
|
|
});
|
|
|
|
|
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,
|
2020-04-03 13:51:38 +00:00
|
|
|
description: person.summary ? htmlToMfm(person.summary, 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
|
|
|
|
.filter(item => item.type === 'Note')
|
|
|
|
.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
|
|
|
}
|