2023-02-16 14:09:41 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-22 21:21:31 +00:00
|
|
|
import { In, Not } from 'typeorm';
|
2022-02-27 02:07:39 +00:00
|
|
|
import Ajv from 'ajv';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { ModuleRef } from '@nestjs/core';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { Config } from '@/config.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { Packed } from '@/misc/schema.js';
|
|
|
|
import type { Promiseable } from '@/misc/prelude/await-all.js';
|
|
|
|
import { awaitAll } from '@/misc/prelude/await-all.js';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { USER_ACTIVE_THRESHOLD, USER_ONLINE_THRESHOLD } from '@/const.js';
|
2022-03-20 16:22:00 +00:00
|
|
|
import { Cache } from '@/misc/cache.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { Instance } from '@/models/entities/Instance.js';
|
2023-02-13 06:50:22 +00:00
|
|
|
import type { LocalUser, RemoteUser, User } from '@/models/entities/User.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { birthdaySchema, descriptionSchema, localUsernameSchema, locationSchema, nameSchema, passwordSchema } from '@/models/entities/User.js';
|
2023-02-15 04:37:18 +00:00
|
|
|
import type { UsersRepository, UserSecurityKeysRepository, FollowingsRepository, FollowRequestsRepository, BlockingsRepository, MutingsRepository, DriveFilesRepository, NoteUnreadsRepository, ChannelFollowingsRepository, NotificationsRepository, UserNotePiningsRepository, UserProfilesRepository, InstancesRepository, AnnouncementReadsRepository, AnnouncementsRepository, AntennaNotesRepository, PagesRepository, UserProfile } from '@/models/index.js';
|
2023-01-12 12:02:26 +00:00
|
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import type { OnModuleInit } from '@nestjs/common';
|
|
|
|
import type { AntennaService } from '../AntennaService.js';
|
|
|
|
import type { CustomEmojiService } from '../CustomEmojiService.js';
|
|
|
|
import type { NoteEntityService } from './NoteEntityService.js';
|
|
|
|
import type { DriveFileEntityService } from './DriveFileEntityService.js';
|
|
|
|
import type { PageEntityService } from './PageEntityService.js';
|
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();
|
|
|
|
|
2023-02-13 06:50:22 +00:00
|
|
|
function isLocalUser(user: User): user is LocalUser;
|
2022-03-26 06:34:00 +00:00
|
|
|
function isLocalUser<T extends { host: User['host'] }>(user: T): user is T & { host: null; };
|
|
|
|
function isLocalUser(user: User | { host: User['host'] }): boolean {
|
|
|
|
return user.host == null;
|
|
|
|
}
|
|
|
|
|
2023-02-13 06:50:22 +00:00
|
|
|
function isRemoteUser(user: User): user is RemoteUser;
|
2022-03-26 06:34:00 +00:00
|
|
|
function isRemoteUser<T extends { host: User['host'] }>(user: T): user is T & { host: string; };
|
|
|
|
function isRemoteUser(user: User | { host: User['host'] }): boolean {
|
|
|
|
return !isLocalUser(user);
|
|
|
|
}
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
|
|
|
export class UserEntityService implements OnModuleInit {
|
|
|
|
private noteEntityService: NoteEntityService;
|
|
|
|
private driveFileEntityService: DriveFileEntityService;
|
|
|
|
private pageEntityService: PageEntityService;
|
|
|
|
private customEmojiService: CustomEmojiService;
|
|
|
|
private antennaService: AntennaService;
|
2023-01-12 12:02:26 +00:00
|
|
|
private roleService: RoleService;
|
2022-09-18 18:11:50 +00:00
|
|
|
private userInstanceCache: Cache<Instance | null>;
|
2022-09-17 18:27:08 +00:00
|
|
|
|
|
|
|
constructor(
|
|
|
|
private moduleRef: ModuleRef,
|
|
|
|
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.userSecurityKeysRepository)
|
|
|
|
private userSecurityKeysRepository: UserSecurityKeysRepository,
|
|
|
|
|
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.followRequestsRepository)
|
|
|
|
private followRequestsRepository: FollowRequestsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.blockingsRepository)
|
|
|
|
private blockingsRepository: BlockingsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.mutingsRepository)
|
|
|
|
private mutingsRepository: MutingsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.noteUnreadsRepository)
|
|
|
|
private noteUnreadsRepository: NoteUnreadsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.channelFollowingsRepository)
|
|
|
|
private channelFollowingsRepository: ChannelFollowingsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.notificationsRepository)
|
|
|
|
private notificationsRepository: NotificationsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.userNotePiningsRepository)
|
|
|
|
private userNotePiningsRepository: UserNotePiningsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.instancesRepository)
|
|
|
|
private instancesRepository: InstancesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.announcementReadsRepository)
|
|
|
|
private announcementReadsRepository: AnnouncementReadsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.announcementsRepository)
|
|
|
|
private announcementsRepository: AnnouncementsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.antennaNotesRepository)
|
|
|
|
private antennaNotesRepository: AntennaNotesRepository,
|
|
|
|
|
|
|
|
@Inject(DI.pagesRepository)
|
|
|
|
private pagesRepository: PagesRepository,
|
|
|
|
|
|
|
|
//private noteEntityService: NoteEntityService,
|
|
|
|
//private driveFileEntityService: DriveFileEntityService,
|
|
|
|
//private pageEntityService: PageEntityService,
|
|
|
|
//private customEmojiService: CustomEmojiService,
|
|
|
|
//private antennaService: AntennaService,
|
2023-01-12 12:02:26 +00:00
|
|
|
//private roleService: RoleService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
2022-09-18 18:11:50 +00:00
|
|
|
this.userInstanceCache = new Cache<Instance | null>(1000 * 60 * 60 * 3);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onModuleInit() {
|
|
|
|
this.noteEntityService = this.moduleRef.get('NoteEntityService');
|
|
|
|
this.driveFileEntityService = this.moduleRef.get('DriveFileEntityService');
|
|
|
|
this.pageEntityService = this.moduleRef.get('PageEntityService');
|
|
|
|
this.customEmojiService = this.moduleRef.get('CustomEmojiService');
|
|
|
|
this.antennaService = this.moduleRef.get('AntennaService');
|
2023-01-12 12:02:26 +00:00
|
|
|
this.roleService = this.moduleRef.get('RoleService');
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2022-02-19 05:05:32 +00:00
|
|
|
|
|
|
|
//#region Validators
|
2022-09-17 18:27:08 +00:00
|
|
|
public validateLocalUsername = ajv.compile(localUsernameSchema);
|
|
|
|
public validatePassword = ajv.compile(passwordSchema);
|
|
|
|
public validateName = ajv.compile(nameSchema);
|
|
|
|
public validateDescription = ajv.compile(descriptionSchema);
|
|
|
|
public validateLocation = ajv.compile(locationSchema);
|
|
|
|
public validateBirthday = ajv.compile(birthdaySchema);
|
2022-02-19 05:05:32 +00:00
|
|
|
//#endregion
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
public isLocalUser = isLocalUser;
|
|
|
|
public isRemoteUser = isRemoteUser;
|
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async getRelation(me: User['id'], target: User['id']) {
|
2022-05-29 06:15:52 +00:00
|
|
|
return awaitAll({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: target,
|
2022-09-17 18:27:08 +00:00
|
|
|
isFollowing: this.followingsRepository.count({
|
2022-05-29 06:15:52 +00:00
|
|
|
where: {
|
|
|
|
followerId: me,
|
|
|
|
followeeId: target,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}).then(n => n > 0),
|
2022-09-17 18:27:08 +00:00
|
|
|
isFollowed: this.followingsRepository.count({
|
2022-05-29 06:15:52 +00:00
|
|
|
where: {
|
|
|
|
followerId: target,
|
|
|
|
followeeId: me,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}).then(n => n > 0),
|
2022-09-17 18:27:08 +00:00
|
|
|
hasPendingFollowRequestFromYou: this.followRequestsRepository.count({
|
2022-05-29 06:15:52 +00:00
|
|
|
where: {
|
|
|
|
followerId: me,
|
|
|
|
followeeId: target,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}).then(n => n > 0),
|
2022-09-17 18:27:08 +00:00
|
|
|
hasPendingFollowRequestToYou: this.followRequestsRepository.count({
|
2022-05-29 06:15:52 +00:00
|
|
|
where: {
|
|
|
|
followerId: target,
|
|
|
|
followeeId: me,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}).then(n => n > 0),
|
2022-09-17 18:27:08 +00:00
|
|
|
isBlocking: this.blockingsRepository.count({
|
2022-05-29 06:15:52 +00:00
|
|
|
where: {
|
|
|
|
blockerId: me,
|
|
|
|
blockeeId: target,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}).then(n => n > 0),
|
2022-09-17 18:27:08 +00:00
|
|
|
isBlocked: this.blockingsRepository.count({
|
2022-05-29 06:15:52 +00:00
|
|
|
where: {
|
|
|
|
blockerId: target,
|
|
|
|
blockeeId: me,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}).then(n => n > 0),
|
2022-09-17 18:27:08 +00:00
|
|
|
isMuted: this.mutingsRepository.count({
|
2022-05-29 06:15:52 +00:00
|
|
|
where: {
|
|
|
|
muterId: me,
|
|
|
|
muteeId: target,
|
|
|
|
},
|
|
|
|
take: 1,
|
|
|
|
}).then(n => n > 0),
|
|
|
|
});
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async getHasUnreadAnnouncement(userId: User['id']): Promise<boolean> {
|
|
|
|
const reads = await this.announcementReadsRepository.findBy({
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: userId,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const count = await this.announcementsRepository.countBy(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;
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async getHasUnreadAntenna(userId: User['id']): Promise<boolean> {
|
|
|
|
const myAntennas = (await this.antennaService.getAntennas()).filter(a => a.userId === userId);
|
2020-03-04 02:45:33 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const unread = myAntennas.length > 0 ? await this.antennaNotesRepository.findOneBy({
|
2021-03-23 06:06:56 +00:00
|
|
|
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;
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async getHasUnreadChannel(userId: User['id']): Promise<boolean> {
|
|
|
|
const channels = await this.channelFollowingsRepository.findBy({ followerId: userId });
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const unread = channels.length > 0 ? await this.noteUnreadsRepository.findOneBy({
|
2020-08-18 13:44:21 +00:00
|
|
|
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;
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2020-08-18 13:44:21 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async getHasUnreadNotification(userId: User['id']): Promise<boolean> {
|
|
|
|
const mute = await this.mutingsRepository.findBy({
|
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
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
const count = await this.notificationsRepository.count({
|
2020-01-29 19:37:25 +00:00
|
|
|
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;
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async getHasPendingReceivedFollowRequest(userId: User['id']): Promise<boolean> {
|
|
|
|
const count = await this.followRequestsRepository.countBy({
|
2021-12-09 14:58:30 +00:00
|
|
|
followeeId: userId,
|
2020-02-15 00:10:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
return count > 0;
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2020-02-15 00:10:49 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +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'
|
|
|
|
);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2021-04-17 06:30:26 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public async getAvatarUrl(user: User): Promise<string> {
|
2022-04-17 12:18:18 +00:00
|
|
|
if (user.avatar) {
|
2023-02-04 04:38:51 +00:00
|
|
|
return this.driveFileEntityService.getPublicUrl(user.avatar, 'avatar') ?? this.getIdenticonUrl(user.id);
|
2022-04-17 12:18:18 +00:00
|
|
|
} else if (user.avatarId) {
|
2022-09-17 18:27:08 +00:00
|
|
|
const avatar = await this.driveFilesRepository.findOneByOrFail({ id: user.avatarId });
|
2023-02-04 04:38:51 +00:00
|
|
|
return this.driveFileEntityService.getPublicUrl(avatar, 'avatar') ?? this.getIdenticonUrl(user.id);
|
2022-04-17 12:18:18 +00:00
|
|
|
} else {
|
|
|
|
return this.getIdenticonUrl(user.id);
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2022-04-17 12:18:18 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public getAvatarUrlSync(user: User): string {
|
2022-02-27 04:59:10 +00:00
|
|
|
if (user.avatar) {
|
2023-02-04 04:38:51 +00:00
|
|
|
return this.driveFileEntityService.getPublicUrl(user.avatar, 'avatar') ?? 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-09-17 18:27:08 +00:00
|
|
|
}
|
2021-10-24 12:02:50 +00:00
|
|
|
|
2022-12-04 06:03:09 +00:00
|
|
|
@bindThis
|
2022-09-17 18:27:08 +00:00
|
|
|
public getIdenticonUrl(userId: User['id']): string {
|
|
|
|
return `${this.config.url}/identicon/${userId}`;
|
|
|
|
}
|
2022-02-27 04:59:10 +00:00
|
|
|
|
2022-09-17 18:27:08 +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,
|
2023-01-21 04:14:55 +00:00
|
|
|
userProfile?: UserProfile,
|
2022-04-17 12:18:18 +00:00
|
|
|
},
|
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;
|
2022-09-17 18:27:08 +00:00
|
|
|
if (src.avatar === undefined && src.avatarId) src.avatar = await this.driveFilesRepository.findOneBy({ id: src.avatarId }) ?? null;
|
|
|
|
if (src.banner === undefined && src.bannerId) src.banner = await this.driveFilesRepository.findOneBy({ id: src.bannerId }) ?? null;
|
2022-02-27 04:59:10 +00:00
|
|
|
} else {
|
2022-09-17 18:27:08 +00:00
|
|
|
user = await this.usersRepository.findOneOrFail({
|
2022-03-26 06:34:00 +00:00
|
|
|
where: { id: src },
|
|
|
|
relations: {
|
|
|
|
avatar: true,
|
|
|
|
banner: true,
|
|
|
|
},
|
2022-02-27 04:59:10 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
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;
|
2022-09-17 18:27:08 +00:00
|
|
|
const pins = opts.detail ? await this.userNotePiningsRepository.createQueryBuilder('pin')
|
2021-03-22 02:38:32 +00:00
|
|
|
.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() : [];
|
2023-01-21 04:14:55 +00:00
|
|
|
const profile = opts.detail ? (opts.userProfile ?? await this.userProfilesRepository.findOneByOrFail({ userId: 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;
|
|
|
|
|
2023-01-12 12:02:26 +00:00
|
|
|
const isModerator = isMe && opts.detail ? this.roleService.isModerator(user) : null;
|
|
|
|
const isAdmin = isMe && opts.detail ? this.roleService.isAdministrator(user) : 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,
|
2022-04-17 12:18:18 +00:00
|
|
|
avatarUrl: this.getAvatarUrlSync(user),
|
2022-09-17 18:27:08 +00:00
|
|
|
avatarBlurhash: user.avatar?.blurhash ?? null,
|
|
|
|
isBot: user.isBot ?? falsy,
|
|
|
|
isCat: user.isCat ?? falsy,
|
2022-09-18 18:11:50 +00:00
|
|
|
instance: user.host ? this.userInstanceCache.fetch(user.host,
|
2022-09-17 18:27:08 +00:00
|
|
|
() => this.instancesRepository.findOneBy({ host: user.host! }),
|
2022-04-17 12:18:18 +00:00
|
|
|
v => v != null,
|
2022-03-20 16:22:00 +00:00
|
|
|
).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,
|
2023-02-08 11:07:19 +00:00
|
|
|
emojis: this.customEmojiService.populateEmojis(user.emojis, user.host),
|
2021-04-17 06:30:26 +00:00
|
|
|
onlineStatus: this.getOnlineStatus(user),
|
2023-02-05 01:37:03 +00:00
|
|
|
// パフォーマンス上の理由でローカルユーザーのみ
|
|
|
|
badgeRoles: user.host == null ? this.roleService.getUserBadgeRoles(user.id).then(rs => rs.map(r => ({
|
|
|
|
name: r.name,
|
|
|
|
iconUrl: r.iconUrl,
|
|
|
|
}))) : undefined,
|
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,
|
2023-02-04 04:38:51 +00:00
|
|
|
bannerUrl: user.banner ? this.driveFileEntityService.getPublicUrl(user.banner) : null,
|
2022-09-17 18:27:08 +00:00
|
|
|
bannerBlurhash: user.banner?.blurhash ?? null,
|
2019-04-14 02:58:10 +00:00
|
|
|
isLocked: user.isLocked,
|
2023-01-15 11:52:53 +00:00
|
|
|
isSilenced: this.roleService.getUserPolicies(user.id).then(r => !r.canPublicNote),
|
2022-09-17 18:27:08 +00:00
|
|
|
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,
|
2022-09-17 18:27:08 +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),
|
2022-09-17 18:27:08 +00:00
|
|
|
pinnedNotes: this.noteEntityService.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,
|
2022-09-17 18:27:08 +00:00
|
|
|
pinnedPage: profile!.pinnedPageId ? this.pageEntityService.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
|
2022-09-17 18:27:08 +00:00
|
|
|
? this.userSecurityKeysRepository.countBy({
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: user.id,
|
2019-07-03 11:18:07 +00:00
|
|
|
}).then(result => result >= 1)
|
|
|
|
: false,
|
2023-01-13 03:07:24 +00:00
|
|
|
roles: this.roleService.getUserRoles(user.id).then(roles => roles.filter(role => role.isPublic).map(role => ({
|
|
|
|
id: role.id,
|
|
|
|
name: role.name,
|
|
|
|
color: role.color,
|
2023-02-05 01:37:03 +00:00
|
|
|
iconUrl: role.iconUrl,
|
2023-01-13 03:07:24 +00:00
|
|
|
description: role.description,
|
|
|
|
isModerator: role.isModerator,
|
|
|
|
isAdministrator: role.isAdministrator,
|
|
|
|
}))),
|
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,
|
2023-01-12 12:02:26 +00:00
|
|
|
isModerator: isModerator,
|
|
|
|
isAdmin: isAdmin,
|
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,
|
2022-07-07 12:06:37 +00:00
|
|
|
autoSensitive: profile!.autoSensitive,
|
2019-04-12 16:43:22 +00:00
|
|
|
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,
|
2022-09-17 18:27:08 +00:00
|
|
|
hasUnreadSpecifiedNotes: this.noteUnreadsRepository.count({
|
2020-08-18 13:44:21 +00:00
|
|
|
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),
|
2022-09-17 18:27:08 +00:00
|
|
|
hasUnreadMentions: this.noteUnreadsRepository.count({
|
2020-08-18 13:44:21 +00:00
|
|
|
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),
|
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-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-09-17 18:27:08 +00:00
|
|
|
showTimelineReplies: user.showTimelineReplies ?? falsy,
|
2023-01-21 04:14:55 +00:00
|
|
|
achievements: profile!.achievements,
|
|
|
|
loggedInDays: profile!.loggedInDates.length,
|
2023-01-25 10:34:10 +00:00
|
|
|
policies: this.roleService.getUserPolicies(user.id),
|
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
|
2022-09-17 18:27:08 +00:00
|
|
|
? this.userSecurityKeysRepository.find({
|
2019-07-03 11:18:07 +00:00
|
|
|
where: {
|
2021-12-09 14:58:30 +00:00
|
|
|
userId: user.id,
|
2019-07-03 11:18:07 +00:00
|
|
|
},
|
2022-03-26 06:34:00 +00:00
|
|
|
select: {
|
|
|
|
id: true,
|
|
|
|
name: true,
|
|
|
|
lastUsed: true,
|
|
|
|
},
|
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);
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2022-09-17 18:27:08 +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-04-17 12:18:18 +00:00
|
|
|
},
|
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)));
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
|
|
|
}
|