2022-02-28 16:26:32 +00:00
|
|
|
import promiseLimit from 'promise-limit';
|
2023-01-07 13:48:35 +00:00
|
|
|
import { Not, IsNull } from 'typeorm';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2022-02-27 02:07:39 +00:00
|
|
|
import config from '@/config/index.js';
|
|
|
|
import { registerOrFetchInstanceDoc } from '@/services/register-or-fetch-instance-doc.js';
|
|
|
|
import { Note } from '@/models/entities/note.js';
|
|
|
|
import { updateUsertags } from '@/services/update-hashtag.js';
|
2022-07-12 12:41:10 +00:00
|
|
|
import { Users, Instances, Followings, UserProfiles, UserPublickeys } from '@/models/index.js';
|
2022-03-25 07:27:41 +00:00
|
|
|
import { User, IRemoteUser, CacheableUser } from '@/models/entities/user.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { Emoji } from '@/models/entities/emoji.js';
|
|
|
|
import { UserNotePining } from '@/models/entities/user-note-pining.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
|
|
|
import { instanceChart, usersChart } from '@/services/chart/index.js';
|
|
|
|
import { UserPublickey } from '@/models/entities/user-publickey.js';
|
|
|
|
import { isDuplicateKeyValueError } from '@/misc/is-duplicate-key-value-error.js';
|
2022-12-14 23:32:15 +00:00
|
|
|
import { extractDbHost } from '@/misc/convert-host.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { UserProfile } from '@/models/entities/user-profile.js';
|
|
|
|
import { toArray } from '@/prelude/array.js';
|
|
|
|
import { fetchInstanceMetadata } from '@/services/fetch-instance-metadata.js';
|
|
|
|
import { normalizeForSearch } from '@/misc/normalize-for-search.js';
|
|
|
|
import { truncate } from '@/misc/truncate.js';
|
|
|
|
import { StatusError } from '@/misc/fetch.js';
|
2022-03-25 07:27:41 +00:00
|
|
|
import { uriPersonCache } from '@/services/user-cache.js';
|
|
|
|
import { publishInternalEvent } from '@/services/stream.js';
|
2022-03-26 06:34:00 +00:00
|
|
|
import { db } from '@/db/postgre.js';
|
2022-10-01 12:40:30 +00:00
|
|
|
import { fromHtml } from '@/mfm/from-html.js';
|
2022-12-11 14:33:03 +00:00
|
|
|
import { Resolver } from '@/remote/activitypub/resolver.js';
|
2022-12-07 18:39:21 +00:00
|
|
|
import { apLogger } from '../logger.js';
|
2022-12-06 22:12:45 +00:00
|
|
|
import { isCollectionOrOrderedCollection, isCollection, IActor, getApId, getOneApHrefNullable, IObject, isPropertyValue, getApType, isActor } from '../type.js';
|
2022-04-16 08:18:51 +00:00
|
|
|
import { extractApHashtags } from './tag.js';
|
|
|
|
import { resolveNote, extractEmojis } from './note.js';
|
|
|
|
import { resolveImage } from './image.js';
|
2019-09-26 19:58:28 +00:00
|
|
|
|
2021-08-14 09:11:47 +00:00
|
|
|
const nameLength = 128;
|
|
|
|
const summaryLength = 2048;
|
|
|
|
|
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
|
|
|
|
*/
|
2022-12-14 23:31:23 +00:00
|
|
|
function validateActor(x: IObject): IActor {
|
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
|
|
|
}
|
|
|
|
|
2022-12-14 23:31:23 +00:00
|
|
|
const uri = getApId(x);
|
|
|
|
if (uri == null) {
|
|
|
|
// Only transient objects or anonymous objects may not have an id or an id that is explicitly null.
|
|
|
|
// We consider all actors as not transient and not anonymous so require ids for them.
|
2022-04-17 11:58:37 +00:00
|
|
|
throw new Error('invalid Actor: wrong id');
|
|
|
|
}
|
|
|
|
|
2023-01-07 13:48:35 +00:00
|
|
|
// This check is security critical.
|
|
|
|
// Without this check, an entry could be inserted into UserPublickey for a local user.
|
|
|
|
if (extractDbHost(uri) === extractDbHost(config.url)) {
|
|
|
|
throw new StatusError('cannot resolve local user', 400, 'cannot resolve local user');
|
|
|
|
}
|
|
|
|
|
2022-04-17 11:58:37 +00:00
|
|
|
if (!(typeof x.inbox === 'string' && x.inbox.length > 0)) {
|
|
|
|
throw new Error('invalid Actor: wrong inbox');
|
|
|
|
}
|
2018-07-26 08:13:55 +00:00
|
|
|
|
2022-04-17 11:58:37 +00:00
|
|
|
if (!(typeof x.preferredUsername === 'string' && x.preferredUsername.length > 0 && x.preferredUsername.length <= 128 && /^\w([\w-.]*\w)?$/.test(x.preferredUsername))) {
|
|
|
|
throw new Error('invalid Actor: wrong username');
|
|
|
|
}
|
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.
|
2022-04-17 11:58:37 +00:00
|
|
|
if (x.name) {
|
|
|
|
if (!(typeof x.name === 'string' && x.name.length > 0)) {
|
|
|
|
throw new Error('invalid Actor: wrong name');
|
|
|
|
}
|
|
|
|
x.name = truncate(x.name, nameLength);
|
|
|
|
}
|
|
|
|
if (x.summary) {
|
|
|
|
if (!(typeof x.summary === 'string' && x.summary.length > 0)) {
|
|
|
|
throw new Error('invalid Actor: wrong summary');
|
|
|
|
}
|
|
|
|
x.summary = truncate(x.summary, summaryLength);
|
|
|
|
}
|
2018-07-26 08:13:55 +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
|
|
|
|
2022-12-14 23:32:15 +00:00
|
|
|
const publicKeyIdHost = extractDbHost(x.publicKey.id);
|
2023-01-07 13:48:35 +00:00
|
|
|
// This is a security critical check to not insert or change an entry of
|
|
|
|
// UserPublickey to point to a local key id.
|
|
|
|
if (extractDbHost(uri) !== extractDbHost(x.publicKey.id) {
|
2021-07-10 14:14:57 +00:00
|
|
|
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
|
|
|
/**
|
2022-09-11 04:20:43 +00:00
|
|
|
* Fetches a person.
|
2018-04-08 19:08:56 +00:00
|
|
|
*
|
2022-09-11 04:20:43 +00:00
|
|
|
* If the target Person is registered in FoundKey, it is returned.
|
2018-04-08 19:08:56 +00:00
|
|
|
*/
|
2023-01-03 02:51:38 +00:00
|
|
|
export async function fetchPerson(uri: string): Promise<CacheableUser | 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
|
|
|
|
2022-03-25 07:27:41 +00:00
|
|
|
const cached = uriPersonCache.get(uri);
|
|
|
|
if (cached) return cached;
|
|
|
|
|
2023-01-07 13:48:35 +00:00
|
|
|
// If the URI points to this server, fetch from database.
|
2018-04-08 19:08:56 +00:00
|
|
|
if (uri.startsWith(config.url + '/')) {
|
2019-04-07 12:50:36 +00:00
|
|
|
const id = uri.split('/').pop();
|
2022-03-26 06:34:00 +00:00
|
|
|
const u = await Users.findOneBy({ id });
|
2022-03-25 07:27:41 +00:00
|
|
|
if (u) uriPersonCache.set(uri, u);
|
|
|
|
return u;
|
2018-04-08 19:08:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//#region このサーバーに既に登録されていたらそれを返す
|
2022-03-26 06:34:00 +00:00
|
|
|
const exist = await Users.findOneBy({ uri });
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
if (exist) {
|
2022-03-25 07:27:41 +00:00
|
|
|
uriPersonCache.set(uri, exist);
|
2018-04-08 19:08:56 +00:00
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Personを作成します。
|
|
|
|
*/
|
2022-12-15 18:44:55 +00:00
|
|
|
export async function createPerson(value: string | IObject, resolver: Resolver): Promise<User> {
|
|
|
|
const object = await resolver.resolve(value) as any;
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2022-12-14 23:31:23 +00:00
|
|
|
const person = validateActor(object);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2022-12-02 17:58:19 +00:00
|
|
|
apLogger.info(`Creating the Person: ${person.id}`);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2022-12-14 23:32:15 +00:00
|
|
|
const host = extractDbHost(object.id);
|
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
|
2022-03-26 06:34:00 +00:00
|
|
|
await db.transaction(async transactionalEntityManager => {
|
2019-04-11 16:52:25 +00:00
|
|
|
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,
|
2021-11-13 10:10:14 +00:00
|
|
|
isCat: (person as any).isCat === true,
|
2022-02-06 07:02:48 +00:00
|
|
|
showTimelineReplies: false,
|
2019-04-11 16:52:25 +00:00
|
|
|
})) as IRemoteUser;
|
|
|
|
|
|
|
|
await transactionalEntityManager.save(new UserProfile({
|
|
|
|
userId: user.id,
|
2022-12-02 18:31:57 +00:00
|
|
|
description: person.summary ? fromHtml(truncate(person.summary, summaryLength)) : 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,
|
2021-11-13 10:10:14 +00:00
|
|
|
userHost: host,
|
2019-04-11 16:52:25 +00:00
|
|
|
}));
|
|
|
|
|
2021-07-10 14:14:57 +00:00
|
|
|
if (person.publicKey) {
|
|
|
|
await transactionalEntityManager.save(new UserPublickey({
|
|
|
|
userId: user.id,
|
|
|
|
keyId: person.publicKey.id,
|
2021-11-13 10:10:14 +00:00
|
|
|
keyPem: person.publicKey.publicKeyPem,
|
2021-07-10 14:14:57 +00:00
|
|
|
}));
|
|
|
|
}
|
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なときにエラーになることがあるのを対応
|
2022-03-26 06:34:00 +00:00
|
|
|
const u = await Users.findOneBy({
|
2021-11-13 10:10:14 +00:00
|
|
|
uri: person.id,
|
2020-04-03 13:51:38 +00:00
|
|
|
});
|
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 {
|
2022-12-02 17:58:19 +00:00
|
|
|
apLogger.error(e instanceof Error ? e : new Error(e as string));
|
2020-04-03 13:51:38 +00:00
|
|
|
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,
|
2021-11-13 10:10:14 +00:00
|
|
|
person.image,
|
2018-04-08 19:08:56 +00:00
|
|
|
].map(img =>
|
|
|
|
img == null
|
|
|
|
? Promise.resolve(null)
|
2022-12-03 23:29:45 +00:00
|
|
|
: resolveImage(user!, img, resolver).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-04-12 16:43:22 +00:00
|
|
|
await Users.update(user!.id, {
|
2019-04-07 12:50:36 +00:00
|
|
|
avatarId,
|
|
|
|
bannerId,
|
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;
|
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 => {
|
2022-12-02 17:58:19 +00:00
|
|
|
apLogger.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, {
|
2021-11-13 10:10:14 +00:00
|
|
|
emojis: emojiNames,
|
2018-12-06 01:02:04 +00:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2022-12-02 17:58:19 +00:00
|
|
|
await updateFeatured(user!.id, resolver).catch(err => apLogger.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
|
|
|
/**
|
2022-09-11 04:20:43 +00:00
|
|
|
* Update Person information.
|
|
|
|
* If the target Person is not registered in FoundKey, it is ignored.
|
2022-12-15 18:44:55 +00:00
|
|
|
* @param value URI of Person or Person itself
|
2018-09-01 08:53:38 +00:00
|
|
|
* @param resolver Resolver
|
2022-09-11 04:20:43 +00:00
|
|
|
* @param hint Hint of Person object (If this value is a valid Person, it is used for updating without Remote resolve.)
|
2018-04-17 06:30:58 +00:00
|
|
|
*/
|
2022-12-14 23:31:23 +00:00
|
|
|
export async function updatePerson(value: IObject | string, resolver: Resolver): Promise<void> {
|
|
|
|
const uri = getApId(value);
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2022-12-14 23:32:15 +00:00
|
|
|
// do we already know this user?
|
2023-01-07 13:48:35 +00:00
|
|
|
const exist = await Users.findOneBy({ uri, host: Not(IsNull()) }) as IRemoteUser;
|
2018-04-17 06:30:58 +00:00
|
|
|
|
|
|
|
if (exist == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-14 23:31:23 +00:00
|
|
|
const object = await resolver.resolve(value);
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2022-12-14 23:31:23 +00:00
|
|
|
const person = validateActor(object);
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2022-12-02 17:58:19 +00:00
|
|
|
apLogger.info(`Updating the Person: ${person.id}`);
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2022-12-14 23:32:15 +00:00
|
|
|
// Fetch avatar and banner image
|
2019-11-17 21:25:47 +00:00
|
|
|
const [avatar, banner] = await Promise.all([
|
2018-04-17 06:30:58 +00:00
|
|
|
person.icon,
|
2021-11-13 10:10:14 +00:00
|
|
|
person.image,
|
2018-04-17 06:30:58 +00:00
|
|
|
].map(img =>
|
|
|
|
img == null
|
|
|
|
? Promise.resolve(null)
|
2022-12-03 23:29:45 +00:00
|
|
|
: resolveImage(exist, img, resolver).catch(() => null),
|
2019-11-17 21:25:47 +00:00
|
|
|
));
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2022-12-14 23:32:15 +00:00
|
|
|
// Get custom emoji
|
2019-04-12 16:43:22 +00:00
|
|
|
const emojis = await extractEmojis(person.tag || [], exist.host).catch(e => {
|
2022-12-02 17:58:19 +00:00
|
|
|
apLogger.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);
|
|
|
|
|
2022-12-14 23:32:15 +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,
|
2022-12-14 23:32:15 +00:00
|
|
|
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-01-21 02:15:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (banner) {
|
2019-04-07 12:50:36 +00:00
|
|
|
updates.bannerId = banner.id;
|
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,
|
2021-11-13 10:10:14 +00:00
|
|
|
keyPem: person.publicKey.publicKeyPem,
|
2021-07-10 14:14:57 +00:00
|
|
|
});
|
|
|
|
}
|
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,
|
2022-12-02 18:31:57 +00:00
|
|
|
description: person.summary ? fromHtml(truncate(person.summary, summaryLength)) : 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
|
|
|
|
2022-03-25 07:27:41 +00:00
|
|
|
publishInternalEvent('remoteUserUpdated', { id: exist.id });
|
|
|
|
|
2019-08-18 03:47:45 +00:00
|
|
|
updateUsertags(exist, tags);
|
2019-02-17 14:41:47 +00:00
|
|
|
|
2022-12-14 23:32:15 +00:00
|
|
|
// If the user in question is already a follower, followers will also be updated.
|
2019-04-07 12:50:36 +00:00
|
|
|
await Followings.update({
|
2021-11-13 10:10:14 +00:00
|
|
|
followerId: exist.id,
|
2019-01-06 08:45:53 +00:00
|
|
|
}, {
|
2022-12-14 23:32:15 +00:00
|
|
|
followerSharedInbox: person.sharedInbox ?? (person.endpoints ? person.endpoints.sharedInbox : undefined),
|
2018-12-21 15:12:34 +00:00
|
|
|
});
|
|
|
|
|
2022-12-02 17:58:19 +00:00
|
|
|
await updateFeatured(exist.id, resolver).catch(err => apLogger.error(err));
|
2018-04-17 06:30:58 +00:00
|
|
|
}
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
/**
|
2022-09-11 04:20:43 +00:00
|
|
|
* Resolve Person.
|
2018-04-08 19:08:56 +00:00
|
|
|
*
|
2022-09-11 04:20:43 +00:00
|
|
|
* If the target Person is registered in FoundKey, return it; otherwise, fetch it from a remote server and return it.
|
|
|
|
* Fetch the person from the remote server, register it in FoundKey, and return it.
|
2018-04-08 19:08:56 +00:00
|
|
|
*/
|
2022-12-03 23:29:45 +00:00
|
|
|
export async function resolvePerson(uri: string, resolver: Resolver): Promise<CacheableUser> {
|
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 このサーバーに既に登録されていたらそれを返す
|
2023-01-03 02:51:38 +00:00
|
|
|
const exist = await fetchPerson(uri);
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
if (exist) {
|
|
|
|
return exist;
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
// リモートサーバーからフェッチしてきて登録
|
2022-12-03 23:29:45 +00:00
|
|
|
return await createPerson(uri, resolver);
|
2018-10-02 07:27:36 +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)) {
|
2022-12-06 20:49:19 +00:00
|
|
|
fields.push({
|
|
|
|
name: attachment.name,
|
|
|
|
value: fromHtml(attachment.value),
|
|
|
|
});
|
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
|
|
|
}
|
|
|
|
|
2022-12-03 23:29:45 +00:00
|
|
|
async function updateFeatured(userId: User['id'], resolver: Resolver) {
|
2022-03-26 06:34:00 +00:00
|
|
|
const user = await Users.findOneByOrFail({ id: 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;
|
|
|
|
|
2022-12-02 17:58:19 +00:00
|
|
|
apLogger.info(`Updating the featured: ${user.uri}`);
|
2018-10-02 07:27:36 +00:00
|
|
|
|
|
|
|
// Resolve to (Ordered)Collection Object
|
|
|
|
const collection = await resolver.resolveCollection(user.featured);
|
2022-04-16 08:18:51 +00:00
|
|
|
if (!isCollectionOrOrderedCollection(collection)) throw new Error('Object is not Collection or OrderedCollection');
|
2018-10-02 07:27:36 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
|
2022-03-26 06:34:00 +00:00
|
|
|
await db.transaction(async transactionalEntityManager => {
|
2021-02-17 12:34:51 +00:00
|
|
|
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,
|
2021-11-13 10:10:14 +00:00
|
|
|
noteId: note!.id,
|
2021-02-17 12:34:51 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2018-04-08 19:08:56 +00:00
|
|
|
}
|