2019-09-09 13:28:41 +00:00
|
|
|
import { EntityRepository, Repository, In, Not } from 'typeorm';
|
2022-02-27 02:07:39 +00:00
|
|
|
import Ajv from 'ajv';
|
|
|
|
import { User, ILocalUser, IRemoteUser } from '@/models/entities/user.js';
|
2022-02-27 04:59:10 +00:00
|
|
|
import { Notes, NoteUnreads, FollowRequests, Notifications, MessagingMessages, UserNotePinings, Followings, Blockings, Mutings, UserProfiles, UserSecurityKeys, UserGroupJoinings, Pages, Announcements, AnnouncementReads, Antennas, AntennaNotes, ChannelFollowings, Instances, DriveFiles } from '../index.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import config from '@/config/index.js';
|
|
|
|
import { Packed } from '@/misc/schema.js';
|
|
|
|
import { awaitAll, Promiseable } from '@/prelude/await-all.js';
|
|
|
|
import { populateEmojis } from '@/misc/populate-emojis.js';
|
|
|
|
import { getAntennas } from '@/misc/antenna-cache.js';
|
|
|
|
import { USER_ACTIVE_THRESHOLD, USER_ONLINE_THRESHOLD } from '@/const.js';
|
2022-03-20 16:22:00 +00:00
|
|
|
import { Cache } from '@/misc/cache.js';
|
|
|
|
import { Instance } from '../entities/instance.js';
|
|
|
|
|
|
|
|
const userInstanceCache = new Cache<Instance | null>(1000 * 60 * 60 * 3);
|
2019-04-23 13:35:26 +00:00
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
type IsUserDetailed<Detailed extends boolean> = Detailed extends true ? Packed<'UserDetailed'> : Packed<'UserLite'>;
|
|
|
|
type IsMeAndIsUserDetailed<ExpectsMe extends boolean | null, Detailed extends boolean> =
|
|
|
|
Detailed extends true ?
|
|
|
|
ExpectsMe extends true ? Packed<'MeDetailed'> :
|
|
|
|
ExpectsMe extends false ? Packed<'UserDetailedNotMe'> :
|
|
|
|
Packed<'UserDetailed'> :
|
|
|
|
Packed<'UserLite'>;
|
|
|
|
|
2022-02-19 05:05:32 +00:00
|
|
|
const ajv = new Ajv();
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
@EntityRepository(User)
|
|
|
|
export class UserRepository extends Repository<User> {
|
2022-02-19 05:05:32 +00:00
|
|
|
public localUsernameSchema = { type: 'string', pattern: /^\w{1,20}$/.toString().slice(1, -1) } as const;
|
|
|
|
public passwordSchema = { type: 'string', minLength: 1 } as const;
|
|
|
|
public nameSchema = { type: 'string', minLength: 1, maxLength: 50 } as const;
|
|
|
|
public descriptionSchema = { type: 'string', minLength: 1, maxLength: 500 } as const;
|
|
|
|
public locationSchema = { type: 'string', minLength: 1, maxLength: 50 } as const;
|
|
|
|
public birthdaySchema = { type: 'string', pattern: /^([0-9]{4})-([0-9]{2})-([0-9]{2})$/.toString().slice(1, -1) } as const;
|
|
|
|
|
|
|
|
//#region Validators
|
|
|
|
public validateLocalUsername = ajv.compile(this.localUsernameSchema);
|
|
|
|
public validatePassword = ajv.compile(this.passwordSchema);
|
|
|
|
public validateName = ajv.compile(this.nameSchema);
|
|
|
|
public validateDescription = ajv.compile(this.descriptionSchema);
|
|
|
|
public validateLocation = ajv.compile(this.locationSchema);
|
|
|
|
public validateBirthday = ajv.compile(this.birthdaySchema);
|
|
|
|
//#endregion
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
public async getRelation(me: User['id'], target: User['id']) {
|
|
|
|
const [following1, following2, followReq1, followReq2, toBlocking, fromBlocked, mute] = await Promise.all([
|
|
|
|
Followings.findOne({
|
|
|
|
followerId: me,
|
2021-12-09 14:58:30 +00:00
|
|
|
followeeId: target,
|
2019-04-07 12:50:36 +00:00
|
|
|
}),
|
|
|
|
Followings.findOne({
|
|
|
|
followerId: target,
|
2021-12-09 14:58:30 +00:00
|
|
|
followeeId: me,
|
2019-04-07 12:50:36 +00:00
|
|
|
}),
|
|
|
|
FollowRequests.findOne({
|
|
|
|
followerId: me,
|
2021-12-09 14:58:30 +00:00
|
|
|
followeeId: target,
|
2019-04-07 12:50:36 +00:00
|
|
|
}),
|
|
|
|
FollowRequests.findOne({
|
|
|
|
followerId: target,
|
2021-12-09 14:58:30 +00:00
|
|
|
followeeId: me,
|
2019-04-07 12:50:36 +00:00
|
|
|
}),
|
|
|
|
Blockings.findOne({
|
|
|
|
blockerId: me,
|
2021-12-09 14:58:30 +00:00
|
|
|
blockeeId: target,
|
2019-04-07 12:50:36 +00:00
|
|
|
}),
|
|
|
|
Blockings.findOne({
|
|
|
|
blockerId: target,
|
2021-12-09 14:58:30 +00:00
|
|
|
blockeeId: me,
|
2019-04-07 12:50:36 +00:00
|
|
|
}),
|
|
|
|
Mutings.findOne({
|
|
|
|
muterId: me,
|
2021-12-09 14:58:30 +00:00
|
|
|
muteeId: target,
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
return {
|
|
|
|
id: target,
|
|
|
|
isFollowing: following1 != null,
|
|
|
|
hasPendingFollowRequestFromYou: followReq1 != null,
|
|
|
|
hasPendingFollowRequestToYou: followReq2 != null,
|
|
|
|
isFollowed: following2 != null,
|
|
|
|
isBlocking: toBlocking != null,
|
|
|
|
isBlocked: fromBlocked != null,
|
2021-12-09 14:58:30 +00:00
|
|
|
isMuted: mute != null,
|
2019-04-07 12:50:36 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-05-18 11:36:33 +00:00
|
|
|
public async getHasUnreadMessagingMessage(userId: User['id']): Promise<boolean> {
|
2019-09-09 13:28:41 +00:00
|
|
|
const mute = await Mutings.find({
|
2021-12-09 14:58:30 +00:00
|
|
|
muterId: userId,
|
2019-09-09 13:28:41 +00:00
|
|
|
});
|
|
|
|
|
2019-05-18 11:36:33 +00:00
|
|
|
const joinings = await UserGroupJoinings.find({ userId: userId });
|
|
|
|
|
|
|
|
const groupQs = Promise.all(joinings.map(j => MessagingMessages.createQueryBuilder('message')
|
|
|
|
.where(`message.groupId = :groupId`, { groupId: j.userGroupId })
|
|
|
|
.andWhere('message.userId != :userId', { userId: userId })
|
|
|
|
.andWhere('NOT (:userId = ANY(message.reads))', { userId: userId })
|
|
|
|
.andWhere('message.createdAt > :joinedAt', { joinedAt: j.createdAt }) // 自分が加入する前の会話については、未読扱いしない
|
|
|
|
.getOne().then(x => x != null)));
|
|
|
|
|
|
|
|
const [withUser, withGroups] = await Promise.all([
|
|
|
|
MessagingMessages.count({
|
|
|
|
where: {
|
|
|
|
recipientId: userId,
|
2019-09-09 13:28:41 +00:00
|
|
|
isRead: false,
|
|
|
|
...(mute.length > 0 ? { userId: Not(In(mute.map(x => x.muteeId))) } : {}),
|
2019-05-18 11:36:33 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
take: 1,
|
2019-05-18 11:36:33 +00:00
|
|
|
}).then(count => count > 0),
|
2021-12-09 14:58:30 +00:00
|
|
|
groupQs,
|
2019-05-18 11:36:33 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
return withUser || withGroups.some(x => x);
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
public async getHasUnreadAnnouncement(userId: User['id']): Promise<boolean> {
|
|
|
|
const reads = await AnnouncementReads.find({
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: userId,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const count = await Announcements.count(reads.length > 0 ? {
|
2021-12-09 14:58:30 +00:00
|
|
|
id: Not(In(reads.map(read => read.announcementId))),
|
2020-01-29 19:37:25 +00:00
|
|
|
} : {});
|
|
|
|
|
|
|
|
return count > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async getHasUnreadAntenna(userId: User['id']): Promise<boolean> {
|
2021-03-23 06:06:56 +00:00
|
|
|
const myAntennas = (await getAntennas()).filter(a => a.userId === userId);
|
2020-03-04 02:45:33 +00:00
|
|
|
|
2021-03-23 06:06:56 +00:00
|
|
|
const unread = myAntennas.length > 0 ? await AntennaNotes.findOne({
|
|
|
|
antennaId: In(myAntennas.map(x => x.id)),
|
2021-12-09 14:58:30 +00:00
|
|
|
read: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
}) : null;
|
|
|
|
|
|
|
|
return unread != null;
|
|
|
|
}
|
|
|
|
|
2020-08-18 13:44:21 +00:00
|
|
|
public async getHasUnreadChannel(userId: User['id']): Promise<boolean> {
|
|
|
|
const channels = await ChannelFollowings.find({ followerId: userId });
|
|
|
|
|
|
|
|
const unread = channels.length > 0 ? await NoteUnreads.findOne({
|
|
|
|
userId: userId,
|
2021-10-31 07:55:25 +00:00
|
|
|
noteChannelId: In(channels.map(x => x.followeeId)),
|
2020-08-18 13:44:21 +00:00
|
|
|
}) : null;
|
|
|
|
|
|
|
|
return unread != null;
|
|
|
|
}
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
public async getHasUnreadNotification(userId: User['id']): Promise<boolean> {
|
|
|
|
const mute = await Mutings.find({
|
2021-12-09 14:58:30 +00:00
|
|
|
muterId: userId,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
const mutedUserIds = mute.map(m => m.muteeId);
|
2020-03-04 02:45:33 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
const count = await Notifications.count({
|
|
|
|
where: {
|
|
|
|
notifieeId: userId,
|
|
|
|
...(mutedUserIds.length > 0 ? { notifierId: Not(In(mutedUserIds)) } : {}),
|
2021-12-09 14:58:30 +00:00
|
|
|
isRead: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
take: 1,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return count > 0;
|
|
|
|
}
|
|
|
|
|
2020-02-15 00:10:49 +00:00
|
|
|
public async getHasPendingReceivedFollowRequest(userId: User['id']): Promise<boolean> {
|
|
|
|
const count = await FollowRequests.count({
|
2021-12-09 14:58:30 +00:00
|
|
|
followeeId: userId,
|
2020-02-15 00:10:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return count > 0;
|
|
|
|
}
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
public getOnlineStatus(user: User): 'unknown' | 'online' | 'active' | 'offline' {
|
2021-04-19 15:15:53 +00:00
|
|
|
if (user.hideOnlineStatus) return 'unknown';
|
2021-04-17 06:30:26 +00:00
|
|
|
if (user.lastActiveDate == null) return 'unknown';
|
|
|
|
const elapsed = Date.now() - user.lastActiveDate.getTime();
|
|
|
|
return (
|
|
|
|
elapsed < USER_ONLINE_THRESHOLD ? 'online' :
|
|
|
|
elapsed < USER_ACTIVE_THRESHOLD ? 'active' :
|
|
|
|
'offline'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-24 12:02:50 +00:00
|
|
|
public getAvatarUrl(user: User): string {
|
2022-02-27 04:59:10 +00:00
|
|
|
// TODO: avatarIdがあるがavatarがない(JOINされてない)場合のハンドリング
|
|
|
|
if (user.avatar) {
|
|
|
|
return DriveFiles.getPublicUrl(user.avatar, true) || this.getIdenticonUrl(user.id);
|
2021-10-24 12:02:50 +00:00
|
|
|
} else {
|
2022-02-27 04:59:10 +00:00
|
|
|
return this.getIdenticonUrl(user.id);
|
2021-10-24 12:02:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-27 04:59:10 +00:00
|
|
|
public getIdenticonUrl(userId: User['id']): string {
|
|
|
|
return `${config.url}/identicon/${userId}`;
|
|
|
|
}
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
public async pack<ExpectsMe extends boolean | null = null, D extends boolean = false>(
|
2019-04-07 12:50:36 +00:00
|
|
|
src: User['id'] | User,
|
2021-03-24 02:05:37 +00:00
|
|
|
me?: { id: User['id'] } | null | undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
options?: {
|
2022-01-18 13:27:10 +00:00
|
|
|
detail?: D,
|
2019-04-07 12:50:36 +00:00
|
|
|
includeSecrets?: boolean,
|
|
|
|
}
|
2022-01-18 13:27:10 +00:00
|
|
|
): Promise<IsMeAndIsUserDetailed<ExpectsMe, D>> {
|
2019-04-07 12:50:36 +00:00
|
|
|
const opts = Object.assign({
|
|
|
|
detail: false,
|
2021-12-09 14:58:30 +00:00
|
|
|
includeSecrets: false,
|
2019-04-07 12:50:36 +00:00
|
|
|
}, options);
|
|
|
|
|
2022-02-27 04:59:10 +00:00
|
|
|
let user: User;
|
|
|
|
|
|
|
|
if (typeof src === 'object') {
|
|
|
|
user = src;
|
|
|
|
if (src.avatar === undefined && src.avatarId) src.avatar = await DriveFiles.findOne(src.avatarId) ?? null;
|
|
|
|
if (src.banner === undefined && src.bannerId) src.banner = await DriveFiles.findOne(src.bannerId) ?? null;
|
|
|
|
} else {
|
|
|
|
user = await this.findOneOrFail(src, {
|
|
|
|
relations: ['avatar', 'banner'],
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
const meId = me ? me.id : null;
|
2022-01-18 13:27:10 +00:00
|
|
|
const isMe = meId === user.id;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
const relation = meId && !isMe && opts.detail ? await this.getRelation(meId, user.id) : null;
|
2021-03-22 02:38:32 +00:00
|
|
|
const pins = opts.detail ? await UserNotePinings.createQueryBuilder('pin')
|
|
|
|
.where('pin.userId = :userId', { userId: user.id })
|
|
|
|
.innerJoinAndSelect('pin.note', 'note')
|
2021-03-22 03:41:38 +00:00
|
|
|
.orderBy('pin.id', 'DESC')
|
2021-03-22 02:38:32 +00:00
|
|
|
.getMany() : [];
|
2021-02-13 06:33:38 +00:00
|
|
|
const profile = opts.detail ? await UserProfiles.findOneOrFail(user.id) : null;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-11-07 09:04:32 +00:00
|
|
|
const followingCount = profile == null ? null :
|
2022-01-18 13:27:10 +00:00
|
|
|
(profile.ffVisibility === 'public') || isMe ? user.followingCount :
|
2021-12-03 08:47:44 +00:00
|
|
|
(profile.ffVisibility === 'followers') && (relation && relation.isFollowing) ? user.followingCount :
|
2021-11-07 09:04:32 +00:00
|
|
|
null;
|
|
|
|
|
|
|
|
const followersCount = profile == null ? null :
|
2022-01-18 13:27:10 +00:00
|
|
|
(profile.ffVisibility === 'public') || isMe ? user.followersCount :
|
2021-12-03 08:47:44 +00:00
|
|
|
(profile.ffVisibility === 'followers') && (relation && relation.isFollowing) ? user.followersCount :
|
2021-11-07 09:04:32 +00:00
|
|
|
null;
|
|
|
|
|
2019-04-16 17:51:12 +00:00
|
|
|
const falsy = opts.detail ? false : undefined;
|
|
|
|
|
2019-04-23 13:35:26 +00:00
|
|
|
const packed = {
|
2019-04-07 12:50:36 +00:00
|
|
|
id: user.id,
|
|
|
|
name: user.name,
|
|
|
|
username: user.username,
|
|
|
|
host: user.host,
|
2021-10-24 12:02:50 +00:00
|
|
|
avatarUrl: this.getAvatarUrl(user),
|
2022-02-27 04:59:10 +00:00
|
|
|
avatarBlurhash: user.avatar?.blurhash || null,
|
2020-07-18 15:24:07 +00:00
|
|
|
avatarColor: null, // 後方互換性のため
|
2019-04-16 17:51:12 +00:00
|
|
|
isAdmin: user.isAdmin || falsy,
|
2020-01-30 20:09:52 +00:00
|
|
|
isModerator: user.isModerator || falsy,
|
2019-04-16 17:51:12 +00:00
|
|
|
isBot: user.isBot || falsy,
|
|
|
|
isCat: user.isCat || falsy,
|
2022-03-20 16:22:00 +00:00
|
|
|
// TODO: typeorm 3.0にしたら .then(x => x || null) は消せる
|
|
|
|
instance: user.host ? userInstanceCache.fetch(user.host,
|
|
|
|
() => Instances.findOne({ host: user.host }).then(x => x || null),
|
|
|
|
v => v != null
|
|
|
|
).then(instance => instance ? {
|
2020-10-27 07:16:59 +00:00
|
|
|
name: instance.name,
|
|
|
|
softwareName: instance.softwareName,
|
|
|
|
softwareVersion: instance.softwareVersion,
|
|
|
|
iconUrl: instance.iconUrl,
|
|
|
|
faviconUrl: instance.faviconUrl,
|
|
|
|
themeColor: instance.themeColor,
|
|
|
|
} : undefined) : undefined,
|
2021-03-21 15:44:38 +00:00
|
|
|
emojis: populateEmojis(user.emojis, user.host),
|
2021-04-17 06:30:26 +00:00
|
|
|
onlineStatus: this.getOnlineStatus(user),
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
...(opts.detail ? {
|
2019-04-12 16:43:22 +00:00
|
|
|
url: profile!.url,
|
2021-04-16 08:34:06 +00:00
|
|
|
uri: user.uri,
|
2019-04-23 13:35:26 +00:00
|
|
|
createdAt: user.createdAt.toISOString(),
|
|
|
|
updatedAt: user.updatedAt ? user.updatedAt.toISOString() : null,
|
2022-01-18 13:27:10 +00:00
|
|
|
lastFetchedAt: user.lastFetchedAt ? user.lastFetchedAt.toISOString() : null,
|
2022-02-27 04:59:10 +00:00
|
|
|
bannerUrl: user.banner ? DriveFiles.getPublicUrl(user.banner, false) : null,
|
|
|
|
bannerBlurhash: user.banner?.blurhash || null,
|
2020-07-18 15:24:07 +00:00
|
|
|
bannerColor: null, // 後方互換性のため
|
2019-04-14 02:58:10 +00:00
|
|
|
isLocked: user.isLocked,
|
2019-08-08 00:31:40 +00:00
|
|
|
isSilenced: user.isSilenced || falsy,
|
|
|
|
isSuspended: user.isSuspended || falsy,
|
2019-04-12 16:43:22 +00:00
|
|
|
description: profile!.description,
|
|
|
|
location: profile!.location,
|
|
|
|
birthday: profile!.birthday,
|
2021-02-13 03:28:26 +00:00
|
|
|
lang: profile!.lang,
|
2019-07-17 15:11:39 +00:00
|
|
|
fields: profile!.fields,
|
2021-11-07 09:04:32 +00:00
|
|
|
followersCount: followersCount || 0,
|
|
|
|
followingCount: followingCount || 0,
|
2019-04-07 12:50:36 +00:00
|
|
|
notesCount: user.notesCount,
|
|
|
|
pinnedNoteIds: pins.map(pin => pin.noteId),
|
2021-03-24 02:05:37 +00:00
|
|
|
pinnedNotes: Notes.packMany(pins.map(pin => pin.note!), me, {
|
2021-12-09 14:58:30 +00:00
|
|
|
detail: true,
|
2019-04-07 12:50:36 +00:00
|
|
|
}),
|
2019-07-06 21:56:13 +00:00
|
|
|
pinnedPageId: profile!.pinnedPageId,
|
2021-03-24 02:05:37 +00:00
|
|
|
pinnedPage: profile!.pinnedPageId ? Pages.pack(profile!.pinnedPageId, me) : null,
|
2021-10-17 16:16:59 +00:00
|
|
|
publicReactions: profile!.publicReactions,
|
2021-11-07 09:04:32 +00:00
|
|
|
ffVisibility: profile!.ffVisibility,
|
2019-05-03 09:55:24 +00:00
|
|
|
twoFactorEnabled: profile!.twoFactorEnabled,
|
2019-07-06 16:38:36 +00:00
|
|
|
usePasswordLessLogin: profile!.usePasswordLessLogin,
|
2019-07-03 11:18:07 +00:00
|
|
|
securityKeys: profile!.twoFactorEnabled
|
|
|
|
? UserSecurityKeys.count({
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: user.id,
|
2019-07-03 11:18:07 +00:00
|
|
|
}).then(result => result >= 1)
|
|
|
|
: false,
|
2019-04-07 12:50:36 +00:00
|
|
|
} : {}),
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
...(opts.detail && isMe ? {
|
2019-04-07 12:50:36 +00:00
|
|
|
avatarId: user.avatarId,
|
|
|
|
bannerId: user.bannerId,
|
2020-02-18 10:05:11 +00:00
|
|
|
injectFeaturedNote: profile!.injectFeaturedNote,
|
2021-02-06 13:47:15 +00:00
|
|
|
receiveAnnouncementEmail: profile!.receiveAnnouncementEmail,
|
2019-04-12 16:43:22 +00:00
|
|
|
alwaysMarkNsfw: profile!.alwaysMarkNsfw,
|
|
|
|
carefulBot: profile!.carefulBot,
|
2019-05-26 23:41:24 +00:00
|
|
|
autoAcceptFollowed: profile!.autoAcceptFollowed,
|
2020-11-25 12:31:34 +00:00
|
|
|
noCrawle: profile!.noCrawle,
|
2020-12-11 12:16:20 +00:00
|
|
|
isExplorable: user.isExplorable,
|
2021-08-21 03:41:56 +00:00
|
|
|
isDeleted: user.isDeleted,
|
2021-04-17 06:30:26 +00:00
|
|
|
hideOnlineStatus: user.hideOnlineStatus,
|
2020-08-18 13:44:21 +00:00
|
|
|
hasUnreadSpecifiedNotes: NoteUnreads.count({
|
|
|
|
where: { userId: user.id, isSpecified: true },
|
2021-12-09 14:58:30 +00:00
|
|
|
take: 1,
|
2020-08-18 13:44:21 +00:00
|
|
|
}).then(count => count > 0),
|
|
|
|
hasUnreadMentions: NoteUnreads.count({
|
|
|
|
where: { userId: user.id, isMentioned: true },
|
2021-12-09 14:58:30 +00:00
|
|
|
take: 1,
|
2020-08-18 13:44:21 +00:00
|
|
|
}).then(count => count > 0),
|
2020-01-29 19:37:25 +00:00
|
|
|
hasUnreadAnnouncement: this.getHasUnreadAnnouncement(user.id),
|
|
|
|
hasUnreadAntenna: this.getHasUnreadAntenna(user.id),
|
2020-08-18 13:44:21 +00:00
|
|
|
hasUnreadChannel: this.getHasUnreadChannel(user.id),
|
2019-05-18 11:36:33 +00:00
|
|
|
hasUnreadMessagingMessage: this.getHasUnreadMessagingMessage(user.id),
|
2020-01-29 19:37:25 +00:00
|
|
|
hasUnreadNotification: this.getHasUnreadNotification(user.id),
|
2020-02-15 00:10:49 +00:00
|
|
|
hasPendingReceivedFollowRequest: this.getHasPendingReceivedFollowRequest(user.id),
|
2020-02-01 02:09:29 +00:00
|
|
|
integrations: profile!.integrations,
|
2020-07-27 04:34:20 +00:00
|
|
|
mutedWords: profile!.mutedWords,
|
2021-12-09 12:38:56 +00:00
|
|
|
mutedInstances: profile!.mutedInstances,
|
2021-02-13 03:28:26 +00:00
|
|
|
mutingNotificationTypes: profile!.mutingNotificationTypes,
|
|
|
|
emailNotificationTypes: profile!.emailNotificationTypes,
|
2022-03-20 16:22:00 +00:00
|
|
|
showTimelineReplies: user.showTimelineReplies || falsy,
|
2019-04-07 12:50:36 +00:00
|
|
|
} : {}),
|
|
|
|
|
2019-04-10 09:10:09 +00:00
|
|
|
...(opts.includeSecrets ? {
|
2019-04-12 16:43:22 +00:00
|
|
|
email: profile!.email,
|
|
|
|
emailVerified: profile!.emailVerified,
|
2019-07-03 11:18:07 +00:00
|
|
|
securityKeysList: profile!.twoFactorEnabled
|
|
|
|
? UserSecurityKeys.find({
|
|
|
|
where: {
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: user.id,
|
2019-07-03 11:18:07 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
select: ['id', 'name', 'lastUsed'],
|
2019-07-03 11:18:07 +00:00
|
|
|
})
|
2021-12-09 14:58:30 +00:00
|
|
|
: [],
|
2019-04-10 09:10:09 +00:00
|
|
|
} : {}),
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
...(relation ? {
|
|
|
|
isFollowing: relation.isFollowing,
|
|
|
|
isFollowed: relation.isFollowed,
|
|
|
|
hasPendingFollowRequestFromYou: relation.hasPendingFollowRequestFromYou,
|
|
|
|
hasPendingFollowRequestToYou: relation.hasPendingFollowRequestToYou,
|
|
|
|
isBlocking: relation.isBlocking,
|
|
|
|
isBlocked: relation.isBlocked,
|
|
|
|
isMuted: relation.isMuted,
|
2021-12-09 14:58:30 +00:00
|
|
|
} : {}),
|
2022-01-18 13:27:10 +00:00
|
|
|
} as Promiseable<Packed<'User'>> as Promiseable<IsMeAndIsUserDetailed<ExpectsMe, D>>;
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
return await awaitAll(packed);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
public packMany<D extends boolean = false>(
|
2019-04-25 04:27:07 +00:00
|
|
|
users: (User['id'] | User)[],
|
2021-03-24 02:05:37 +00:00
|
|
|
me?: { id: User['id'] } | null | undefined,
|
2019-04-25 04:27:07 +00:00
|
|
|
options?: {
|
2022-01-18 13:27:10 +00:00
|
|
|
detail?: D,
|
2019-04-25 04:27:07 +00:00
|
|
|
includeSecrets?: boolean,
|
|
|
|
}
|
2022-01-18 13:27:10 +00:00
|
|
|
): Promise<IsUserDetailed<D>[]> {
|
2019-04-25 04:27:07 +00:00
|
|
|
return Promise.all(users.map(u => this.pack(u, me, options)));
|
|
|
|
}
|
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
public isLocalUser(user: User): user is ILocalUser;
|
|
|
|
public isLocalUser<T extends { host: User['host'] }>(user: T): user is T & { host: null; };
|
|
|
|
public isLocalUser(user: User | { host: User['host'] }): boolean {
|
2019-04-09 14:59:32 +00:00
|
|
|
return user.host == null;
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
public isRemoteUser(user: User): user is IRemoteUser;
|
|
|
|
public isRemoteUser<T extends { host: User['host'] }>(user: T): user is T & { host: string; };
|
|
|
|
public isRemoteUser(user: User | { host: User['host'] }): boolean {
|
2019-04-07 12:50:36 +00:00
|
|
|
return !this.isLocalUser(user);
|
|
|
|
}
|
|
|
|
}
|