2019-02-09 04:01:21 +00:00
|
|
|
import * as promiseLimit from 'promise-limit';
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
import config from '../../../config';
|
|
|
|
import Resolver from '../resolver';
|
|
|
|
import { resolveImage } from './image';
|
2018-10-02 07:27:36 +00:00
|
|
|
import { isCollectionOrOrderedCollection, isCollection, IPerson } from '../type';
|
2019-04-07 12:50:36 +00:00
|
|
|
import { DriveFile } from '../../../models/entities/drive-file';
|
2019-01-30 07:56:27 +00:00
|
|
|
import { fromHtml } from '../../../mfm/fromHtml';
|
2018-08-29 07:10:03 +00:00
|
|
|
import { URL } from 'url';
|
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';
|
2019-01-31 11:42:45 +00:00
|
|
|
import { ITag, extractHashtags } from './tag';
|
2019-01-24 08:33:39 +00:00
|
|
|
import { IIdentifier } from './identifier';
|
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-02-17 14:41:47 +00:00
|
|
|
import { updateHashtag } from '../../../services/update-hashtag';
|
2019-04-10 06:04:27 +00:00
|
|
|
import { Users, UserNotePinings, 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';
|
|
|
|
import { UserNotePining } from '../../../models/entities/user-note-pinings';
|
|
|
|
import { genId } from '../../../misc/gen-id';
|
|
|
|
import { instanceChart, usersChart } from '../../../services/chart';
|
|
|
|
import { UserPublickey } from '../../../models/entities/user-publickey';
|
|
|
|
import { isDuplicateKeyValueError } from '../../../misc/is-duplicate-key-value-error';
|
2019-04-09 14:59:32 +00:00
|
|
|
import { toPuny } from '../../../misc/convert-host';
|
2019-04-10 06:04:27 +00:00
|
|
|
import { UserProfile } from '../../../models/entities/user-profile';
|
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');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x.type != 'Person' && x.type != 'Service') {
|
|
|
|
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-04-07 12:50:36 +00:00
|
|
|
if (!Users.validateUsername(x.preferredUsername, true)) {
|
2018-07-26 08:13:55 +00:00
|
|
|
return new Error('invalid person: invalid username');
|
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (!Users.isValidName(x.name == '' ? null : x.name)) {
|
2018-07-26 08:13:55 +00:00
|
|
|
return new Error('invalid person: invalid name');
|
|
|
|
}
|
|
|
|
|
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-07 12:50:36 +00:00
|
|
|
export async function fetchPerson(uri: string, resolver?: Resolver): Promise<User> {
|
2018-08-29 07:10:03 +00:00
|
|
|
if (typeof uri !== 'string') throw '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();
|
|
|
|
return await Users.findOne(id);
|
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> {
|
2018-08-29 07:10:03 +00:00
|
|
|
if (typeof uri !== 'string') throw 'uri is not string';
|
|
|
|
|
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-10 06:04:27 +00:00
|
|
|
const { fields } = analyzeAttachments(person.attachment);
|
2018-12-11 11:18:12 +00:00
|
|
|
|
2019-02-17 16:11:14 +00:00
|
|
|
const tags = extractHashtags(person.tag).map(tag => tag.toLowerCase());
|
2019-01-31 11:42:45 +00:00
|
|
|
|
2018-06-23 10:18:14 +00:00
|
|
|
const isBot = object.type == 'Service';
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
// Create user
|
2018-04-19 09:58:57 +00:00
|
|
|
let user: IRemoteUser;
|
|
|
|
try {
|
2019-04-07 12:50:36 +00:00
|
|
|
user = await Users.save({
|
|
|
|
id: genId(),
|
2018-04-19 09:58:57 +00:00
|
|
|
avatarId: null,
|
|
|
|
bannerId: null,
|
2019-04-07 12:50:36 +00:00
|
|
|
createdAt: Date.parse(person.published) || new Date(),
|
2018-11-22 23:01:14 +00:00
|
|
|
lastFetchedAt: new Date(),
|
2018-04-19 09:58:57 +00:00
|
|
|
name: person.name,
|
2018-05-31 09:34:15 +00:00
|
|
|
isLocked: person.manuallyApprovesFollowers,
|
2018-04-19 09:58:57 +00:00
|
|
|
username: person.preferredUsername,
|
|
|
|
usernameLower: person.preferredUsername.toLowerCase(),
|
|
|
|
host,
|
|
|
|
inbox: person.inbox,
|
2018-12-23 14:23:17 +00:00
|
|
|
sharedInbox: person.sharedInbox || (person.endpoints ? person.endpoints.sharedInbox : undefined),
|
2018-10-02 07:27:36 +00:00
|
|
|
featured: person.featured,
|
2018-05-16 08:06:12 +00:00
|
|
|
endpoints: person.endpoints,
|
2018-04-19 09:58:57 +00:00
|
|
|
uri: person.id,
|
2018-06-23 10:18:14 +00:00
|
|
|
url: person.url,
|
2019-01-31 11:42:45 +00:00
|
|
|
tags,
|
2019-01-24 08:33:39 +00:00
|
|
|
isBot,
|
2018-12-02 10:35:41 +00:00
|
|
|
isCat: (person as any).isCat === true
|
2019-04-07 12:50:36 +00:00
|
|
|
} as Partial<User>) as IRemoteUser;
|
2018-04-19 09:58:57 +00:00
|
|
|
} catch (e) {
|
|
|
|
// duplicate key error
|
2019-04-07 12:50:36 +00:00
|
|
|
if (isDuplicateKeyValueError(e)) {
|
2018-04-19 09:58:57 +00:00
|
|
|
throw new Error('already registered');
|
|
|
|
}
|
|
|
|
|
2019-02-03 07:45:13 +00:00
|
|
|
logger.error(e);
|
2018-04-19 09:58:57 +00:00
|
|
|
throw e;
|
|
|
|
}
|
2018-04-08 19:08:56 +00:00
|
|
|
|
2019-04-10 06:04:27 +00:00
|
|
|
await UserProfiles.save({
|
|
|
|
userId: user.id,
|
|
|
|
description: fromHtml(person.summary),
|
|
|
|
fields,
|
|
|
|
} as Partial<UserProfile>);
|
|
|
|
|
2019-04-07 15:46:01 +00:00
|
|
|
await UserPublickeys.save({
|
|
|
|
userId: user.id,
|
|
|
|
keyId: person.publicKey.id,
|
|
|
|
keyPem: person.publicKey.publicKeyPem
|
|
|
|
} as UserPublickey);
|
|
|
|
|
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);
|
2018-10-23 21:17:55 +00:00
|
|
|
});
|
|
|
|
|
2018-10-22 20:36:35 +00:00
|
|
|
usersChart.update(user, true);
|
2018-06-16 01:40:53 +00:00
|
|
|
|
2019-02-17 16:11:14 +00:00
|
|
|
// ハッシュタグ更新
|
2019-02-17 14:41:47 +00:00
|
|
|
for (const tag of tags) updateHashtag(user, tag, true, true);
|
|
|
|
for (const tag of (user.tags || []).filter(x => !tags.includes(x))) updateHashtag(user, tag, true, false);
|
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
//#region アイコンとヘッダー画像をフェッチ
|
2019-04-07 12:50:36 +00:00
|
|
|
const [avatar, banner] = (await Promise.all<DriveFile>([
|
2018-04-08 19:08:56 +00:00
|
|
|
person.icon,
|
|
|
|
person.image
|
|
|
|
].map(img =>
|
|
|
|
img == null
|
|
|
|
? Promise.resolve(null)
|
2018-10-21 09:35:36 +00:00
|
|
|
: resolveImage(user, img).catch(() => null)
|
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-10 05:10:00 +00:00
|
|
|
const avatarUrl = avatar ? DriveFiles.getPublicUrl(avatar) : null;
|
|
|
|
const bannerUrl = banner ? DriveFiles.getPublicUrl(banner) : null;
|
2019-04-07 12:50:36 +00:00
|
|
|
const avatarColor = avatar && avatar.properties.avgColor ? avatar.properties.avgColor : null;
|
|
|
|
const bannerColor = banner && avatar.properties.avgColor ? banner.properties.avgColor : null;
|
|
|
|
|
|
|
|
await Users.update(user.id, {
|
|
|
|
avatarId,
|
|
|
|
bannerId,
|
|
|
|
avatarUrl,
|
|
|
|
bannerUrl,
|
|
|
|
avatarColor,
|
|
|
|
bannerColor
|
2018-06-09 23:41:57 +00:00
|
|
|
});
|
2018-04-08 19:08:56 +00:00
|
|
|
|
|
|
|
user.avatarId = avatarId;
|
|
|
|
user.bannerId = bannerId;
|
2018-06-09 23:41:57 +00:00
|
|
|
user.avatarUrl = avatarUrl;
|
|
|
|
user.bannerUrl = bannerUrl;
|
2018-11-24 08:29:32 +00:00
|
|
|
user.avatarColor = avatarColor;
|
|
|
|
user.bannerColor = bannerColor;
|
2018-04-08 19:08:56 +00:00
|
|
|
//#endregion
|
|
|
|
|
2018-12-06 01:02:04 +00:00
|
|
|
//#region カスタム絵文字取得
|
|
|
|
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-07 12:50:36 +00:00
|
|
|
await Users.update(user.id, {
|
|
|
|
emojis: emojiNames
|
2018-12-06 01:02:04 +00:00
|
|
|
});
|
|
|
|
//#endregion
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
await updateFeatured(user.id).catch(err => logger.error(err));
|
2018-10-23 21:17:55 +00:00
|
|
|
|
2018-04-08 19:08:56 +00:00
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
*/
|
2018-09-01 08:53:38 +00:00
|
|
|
export async function updatePerson(uri: string, resolver?: Resolver, hint?: object): Promise<void> {
|
2018-08-29 07:10:03 +00:00
|
|
|
if (typeof uri !== 'string') throw '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
|
|
|
|
|
2019-03-16 00:55:19 +00:00
|
|
|
// 繋がらないインスタンスに何回も試行するのを防ぐ, 後続の同様処理の連続試行を防ぐ ため 試行前にも更新する
|
2019-04-07 12:50:36 +00:00
|
|
|
await Users.update(exist.id, {
|
|
|
|
lastFetchedAt: new Date(),
|
2019-03-16 00:55:19 +00:00
|
|
|
});
|
|
|
|
|
2018-04-17 06:30:58 +00:00
|
|
|
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-04-07 12:50:36 +00:00
|
|
|
const [avatar, banner] = (await Promise.all<DriveFile>([
|
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)
|
2018-06-09 23:34:46 +00:00
|
|
|
)));
|
2018-04-17 06:30:58 +00:00
|
|
|
|
2018-12-06 01:02:04 +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);
|
|
|
|
|
2019-01-24 08:33:39 +00:00
|
|
|
const { fields, services } = analyzeAttachments(person.attachment);
|
2018-12-11 11:18:12 +00:00
|
|
|
|
2019-02-17 16:11:14 +00:00
|
|
|
const tags = extractHashtags(person.tag).map(tag => tag.toLowerCase());
|
2019-01-31 11:42:45 +00:00
|
|
|
|
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),
|
|
|
|
featured: person.featured,
|
|
|
|
emojis: emojiNames,
|
2019-01-30 06:00:05 +00:00
|
|
|
description: fromHtml(person.summary),
|
2019-01-21 02:15:36 +00:00
|
|
|
name: person.name,
|
|
|
|
url: person.url,
|
|
|
|
endpoints: person.endpoints,
|
|
|
|
fields,
|
2019-01-31 11:42:45 +00:00
|
|
|
tags,
|
2019-01-21 02:15:36 +00:00
|
|
|
isBot: object.type == 'Service',
|
|
|
|
isCat: (person as any).isCat === true,
|
|
|
|
isLocked: person.manuallyApprovesFollowers,
|
2019-04-07 12:50:36 +00:00
|
|
|
createdAt: new Date(Date.parse(person.published)) || null,
|
|
|
|
} 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;
|
|
|
|
updates.avatarUrl = DriveFiles.getPublicUrl(avatar);
|
|
|
|
updates.avatarColor = avatar.properties.avgColor ? avatar.properties.avgColor : null;
|
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);
|
|
|
|
updates.bannerColor = banner.properties.avgColor ? banner.properties.avgColor : null;
|
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 }, {
|
2019-04-07 12:50:36 +00:00
|
|
|
twitterUserId: services.twitter.userId,
|
|
|
|
twitterScreenName: services.twitter.screenName,
|
|
|
|
githubId: services.github.id,
|
|
|
|
githubLogin: services.github.login,
|
|
|
|
discordId: services.discord.id,
|
|
|
|
discordUsername: services.discord.username,
|
|
|
|
discordDiscriminator: services.discord.discriminator,
|
2018-04-17 06:30:58 +00:00
|
|
|
});
|
2018-10-02 07:27:36 +00:00
|
|
|
|
2019-02-17 14:41:47 +00:00
|
|
|
// ハッシュタグ更新
|
|
|
|
for (const tag of tags) updateHashtag(exist, tag, true, true);
|
|
|
|
for (const tag of (exist.tags || []).filter(x => !tags.includes(x))) updateHashtag(exist, tag, true, false);
|
|
|
|
|
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-07 12:50:36 +00:00
|
|
|
export async function resolvePerson(uri: string, verifier?: string, resolver?: Resolver): Promise<User> {
|
2018-08-29 07:10:03 +00:00
|
|
|
if (typeof uri !== 'string') throw '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 isPropertyValue = (x: {
|
|
|
|
type: string,
|
|
|
|
name?: string,
|
|
|
|
value?: string
|
|
|
|
}) =>
|
|
|
|
x &&
|
|
|
|
x.type === 'PropertyValue' &&
|
|
|
|
typeof x.name === 'string' &&
|
|
|
|
typeof x.value === 'string';
|
|
|
|
|
|
|
|
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 };
|
|
|
|
};
|
|
|
|
|
|
|
|
function addService(target: { [x: string]: any }, source: IIdentifier) {
|
|
|
|
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
|
|
|
|
2019-01-24 08:33:39 +00:00
|
|
|
export function analyzeAttachments(attachments: ITag[]) {
|
|
|
|
const fields: {
|
|
|
|
name: string,
|
|
|
|
value: string
|
|
|
|
}[] = [];
|
|
|
|
const services: { [x: string]: any } = {};
|
|
|
|
|
|
|
|
if (Array.isArray(attachments))
|
|
|
|
for (const attachment of attachments.filter(isPropertyValue))
|
|
|
|
if (isPropertyValue(attachment.identifier))
|
|
|
|
addService(services, attachment.identifier);
|
|
|
|
else
|
|
|
|
fields.push({
|
|
|
|
name: attachment.name,
|
2019-01-30 06:00:05 +00:00
|
|
|
value: fromHtml(attachment.value)
|
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']) {
|
|
|
|
const user = await Users.findOne(userId);
|
|
|
|
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;
|
|
|
|
const items = await resolver.resolve(unresolvedItems);
|
|
|
|
if (!Array.isArray(items)) throw new Error(`Collection items is not an array`);
|
|
|
|
|
|
|
|
// Resolve and regist Notes
|
2019-02-09 04:01:21 +00:00
|
|
|
const limit = promiseLimit(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-07 12:50:36 +00:00
|
|
|
.map(item => limit(() => resolveNote(item, resolver)) as Promise<Note>));
|
|
|
|
|
|
|
|
for (const note of featuredNotes.filter(note => note != null)) {
|
|
|
|
UserNotePinings.save({
|
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
userId: user.id,
|
|
|
|
noteId: note.id
|
|
|
|
} as UserNotePining);
|
|
|
|
}
|
2018-04-08 19:08:56 +00:00
|
|
|
}
|