2019-06-14 15:07:41 +00:00
|
|
|
|
import $ from 'cafy';
|
2019-09-09 13:28:41 +00:00
|
|
|
|
import { EntityRepository, Repository, In, Not } from 'typeorm';
|
2019-04-07 12:50:36 +00:00
|
|
|
|
import { User, ILocalUser, IRemoteUser } from '../entities/user';
|
2021-03-21 15:44:38 +00:00
|
|
|
|
import { Notes, NoteUnreads, FollowRequests, Notifications, MessagingMessages, UserNotePinings, Followings, Blockings, Mutings, UserProfiles, UserSecurityKeys, UserGroupJoinings, Pages, Announcements, AnnouncementReads, Antennas, AntennaNotes, ChannelFollowings, Instances } from '..';
|
2019-04-15 11:37:21 +00:00
|
|
|
|
import config from '../../config';
|
2019-06-27 09:04:09 +00:00
|
|
|
|
import { SchemaType } from '../../misc/schema';
|
2019-04-23 13:35:26 +00:00
|
|
|
|
import { awaitAll } from '../../prelude/await-all';
|
2021-03-21 15:44:38 +00:00
|
|
|
|
import { populateEmojis } from '../../misc/populate-emojis';
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
|
|
export type PackedUser = SchemaType<typeof packedUserSchema>;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
|
|
@EntityRepository(User)
|
|
|
|
|
export class UserRepository extends Repository<User> {
|
|
|
|
|
public async getRelation(me: User['id'], target: User['id']) {
|
|
|
|
|
const [following1, following2, followReq1, followReq2, toBlocking, fromBlocked, mute] = await Promise.all([
|
|
|
|
|
Followings.findOne({
|
|
|
|
|
followerId: me,
|
|
|
|
|
followeeId: target
|
|
|
|
|
}),
|
|
|
|
|
Followings.findOne({
|
|
|
|
|
followerId: target,
|
|
|
|
|
followeeId: me
|
|
|
|
|
}),
|
|
|
|
|
FollowRequests.findOne({
|
|
|
|
|
followerId: me,
|
|
|
|
|
followeeId: target
|
|
|
|
|
}),
|
|
|
|
|
FollowRequests.findOne({
|
|
|
|
|
followerId: target,
|
|
|
|
|
followeeId: me
|
|
|
|
|
}),
|
|
|
|
|
Blockings.findOne({
|
|
|
|
|
blockerId: me,
|
|
|
|
|
blockeeId: target
|
|
|
|
|
}),
|
|
|
|
|
Blockings.findOne({
|
|
|
|
|
blockerId: target,
|
|
|
|
|
blockeeId: me
|
|
|
|
|
}),
|
|
|
|
|
Mutings.findOne({
|
|
|
|
|
muterId: me,
|
|
|
|
|
muteeId: target
|
|
|
|
|
})
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
id: target,
|
|
|
|
|
isFollowing: following1 != null,
|
|
|
|
|
hasPendingFollowRequestFromYou: followReq1 != null,
|
|
|
|
|
hasPendingFollowRequestToYou: followReq2 != null,
|
|
|
|
|
isFollowed: following2 != null,
|
|
|
|
|
isBlocking: toBlocking != null,
|
|
|
|
|
isBlocked: fromBlocked != null,
|
|
|
|
|
isMuted: mute != null
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
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({
|
|
|
|
|
muterId: userId
|
|
|
|
|
});
|
|
|
|
|
|
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
|
|
|
|
},
|
|
|
|
|
take: 1
|
|
|
|
|
}).then(count => count > 0),
|
|
|
|
|
groupQs
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
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({
|
|
|
|
|
userId: userId
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const count = await Announcements.count(reads.length > 0 ? {
|
|
|
|
|
id: Not(In(reads.map(read => read.announcementId)))
|
|
|
|
|
} : {});
|
|
|
|
|
|
|
|
|
|
return count > 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async getHasUnreadAntenna(userId: User['id']): Promise<boolean> {
|
|
|
|
|
const antennas = await Antennas.find({ userId });
|
2020-03-04 02:45:33 +00:00
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
|
const unread = antennas.length > 0 ? await AntennaNotes.findOne({
|
|
|
|
|
antennaId: In(antennas.map(x => x.id)),
|
|
|
|
|
read: false
|
|
|
|
|
}) : 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,
|
|
|
|
|
noteChannelId: In(channels.map(x => x.id)),
|
|
|
|
|
}) : 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({
|
|
|
|
|
muterId: userId
|
|
|
|
|
});
|
|
|
|
|
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)) } : {}),
|
|
|
|
|
isRead: false
|
|
|
|
|
},
|
|
|
|
|
take: 1
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return count > 0;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-15 00:10:49 +00:00
|
|
|
|
public async getHasPendingReceivedFollowRequest(userId: User['id']): Promise<boolean> {
|
|
|
|
|
const count = await FollowRequests.count({
|
|
|
|
|
followeeId: userId
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return count > 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
|
public async pack(
|
|
|
|
|
src: User['id'] | User,
|
2019-04-12 16:43:22 +00:00
|
|
|
|
me?: User['id'] | User | null | undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
|
options?: {
|
|
|
|
|
detail?: boolean,
|
|
|
|
|
includeSecrets?: boolean,
|
|
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
|
): Promise<PackedUser> {
|
2019-04-07 12:50:36 +00:00
|
|
|
|
const opts = Object.assign({
|
|
|
|
|
detail: false,
|
|
|
|
|
includeSecrets: false
|
|
|
|
|
}, options);
|
|
|
|
|
|
2021-02-13 06:33:38 +00:00
|
|
|
|
const user = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
const meId = me ? typeof me === 'string' ? me : me.id : null;
|
|
|
|
|
|
|
|
|
|
const relation = meId && (meId !== user.id) && 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')
|
|
|
|
|
.orderBy('id', 'DESC')
|
|
|
|
|
.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
|
|
|
|
|
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,
|
2019-04-15 11:37:21 +00:00
|
|
|
|
avatarUrl: user.avatarUrl ? user.avatarUrl : config.url + '/avatar/' + user.id,
|
2020-07-18 15:24:07 +00:00
|
|
|
|
avatarBlurhash: user.avatarBlurhash,
|
|
|
|
|
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,
|
2020-10-27 07:16:59 +00:00
|
|
|
|
instance: user.host ? Instances.findOne({ host: user.host }).then(instance => instance ? {
|
|
|
|
|
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),
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
|
|
...(opts.detail ? {
|
2019-04-12 16:43:22 +00:00
|
|
|
|
url: profile!.url,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
createdAt: user.createdAt.toISOString(),
|
|
|
|
|
updatedAt: user.updatedAt ? user.updatedAt.toISOString() : null,
|
2019-04-13 06:02:15 +00:00
|
|
|
|
bannerUrl: user.bannerUrl,
|
2020-07-18 15:24:07 +00:00
|
|
|
|
bannerBlurhash: user.bannerBlurhash,
|
|
|
|
|
bannerColor: null, // 後方互換性のため
|
2019-04-14 02:58:10 +00:00
|
|
|
|
isLocked: user.isLocked,
|
2019-04-16 17:51:12 +00:00
|
|
|
|
isModerator: user.isModerator || falsy,
|
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,
|
2019-04-07 12:50:36 +00:00
|
|
|
|
followersCount: user.followersCount,
|
|
|
|
|
followingCount: user.followingCount,
|
|
|
|
|
notesCount: user.notesCount,
|
|
|
|
|
pinnedNoteIds: pins.map(pin => pin.noteId),
|
2021-03-22 02:38:32 +00:00
|
|
|
|
pinnedNotes: Notes.packMany(pins.map(pin => pin.note!), meId, {
|
2019-04-07 12:50:36 +00:00
|
|
|
|
detail: true
|
|
|
|
|
}),
|
2019-07-06 21:56:13 +00:00
|
|
|
|
pinnedPageId: profile!.pinnedPageId,
|
|
|
|
|
pinnedPage: profile!.pinnedPageId ? Pages.pack(profile!.pinnedPageId, meId) : null,
|
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({
|
|
|
|
|
userId: user.id
|
|
|
|
|
}).then(result => result >= 1)
|
|
|
|
|
: false,
|
2019-04-07 12:50:36 +00:00
|
|
|
|
} : {}),
|
|
|
|
|
|
|
|
|
|
...(opts.detail && meId === user.id ? {
|
|
|
|
|
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,
|
2020-08-18 13:44:21 +00:00
|
|
|
|
hasUnreadSpecifiedNotes: NoteUnreads.count({
|
|
|
|
|
where: { userId: user.id, isSpecified: true },
|
|
|
|
|
take: 1
|
|
|
|
|
}).then(count => count > 0),
|
|
|
|
|
hasUnreadMentions: NoteUnreads.count({
|
|
|
|
|
where: { userId: user.id, isMentioned: true },
|
|
|
|
|
take: 1
|
|
|
|
|
}).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-02-13 03:28:26 +00:00
|
|
|
|
mutingNotificationTypes: profile!.mutingNotificationTypes,
|
|
|
|
|
emailNotificationTypes: profile!.emailNotificationTypes,
|
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: {
|
|
|
|
|
userId: user.id
|
|
|
|
|
},
|
|
|
|
|
select: ['id', 'name', 'lastUsed']
|
|
|
|
|
})
|
|
|
|
|
: []
|
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,
|
|
|
|
|
} : {})
|
2019-04-23 13:35:26 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return await awaitAll(packed);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-04-25 04:27:07 +00:00
|
|
|
|
public packMany(
|
|
|
|
|
users: (User['id'] | User)[],
|
|
|
|
|
me?: User['id'] | User | null | undefined,
|
|
|
|
|
options?: {
|
|
|
|
|
detail?: boolean,
|
|
|
|
|
includeSecrets?: boolean,
|
|
|
|
|
}
|
|
|
|
|
) {
|
|
|
|
|
return Promise.all(users.map(u => this.pack(u, me, options)));
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
|
public isLocalUser(user: User): user is ILocalUser {
|
2019-04-09 14:59:32 +00:00
|
|
|
|
return user.host == null;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public isRemoteUser(user: User): user is IRemoteUser {
|
|
|
|
|
return !this.isLocalUser(user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//#region Validators
|
2019-06-14 15:07:41 +00:00
|
|
|
|
public validateLocalUsername = $.str.match(/^\w{1,20}$/);
|
2020-05-08 23:25:23 +00:00
|
|
|
|
public validateRemoteUsername = $.str.match(/^\w([\w-.]*\w)?$/);
|
2019-06-14 15:07:41 +00:00
|
|
|
|
public validatePassword = $.str.min(1);
|
|
|
|
|
public validateName = $.str.min(1).max(50);
|
|
|
|
|
public validateDescription = $.str.min(1).max(500);
|
|
|
|
|
public validateLocation = $.str.min(1).max(50);
|
|
|
|
|
public validateBirthday = $.str.match(/^([0-9]{4})-([0-9]{2})-([0-9]{2})$/);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
//#endregion
|
|
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
|
|
export const packedUserSchema = {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'object' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
properties: {
|
|
|
|
|
id: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
format: 'id',
|
|
|
|
|
description: 'The unique identifier for this User.',
|
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
name: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: false as const,
|
|
|
|
|
description: 'The name of the user, as they’ve defined it.',
|
|
|
|
|
example: '藍'
|
|
|
|
|
},
|
2019-04-23 13:35:26 +00:00
|
|
|
|
username: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
description: 'The screen name, handle, or alias that this user identifies themselves with.',
|
|
|
|
|
example: 'ai'
|
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
host: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: false as const,
|
2021-03-06 13:34:11 +00:00
|
|
|
|
example: 'misskey.example.com'
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
|
|
|
|
avatarUrl: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
format: 'url',
|
2019-06-27 09:04:09 +00:00
|
|
|
|
nullable: true as const, optional: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2020-07-18 15:24:07 +00:00
|
|
|
|
avatarBlurhash: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'any' as const,
|
|
|
|
|
nullable: true as const, optional: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
avatarColor: {
|
|
|
|
|
type: 'any' as const,
|
|
|
|
|
nullable: true as const, optional: false as const,
|
|
|
|
|
default: null
|
|
|
|
|
},
|
|
|
|
|
isAdmin: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
description: 'Whether this account is the admin.',
|
|
|
|
|
default: false
|
|
|
|
|
},
|
|
|
|
|
isModerator: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
description: 'Whether this account is a moderator.',
|
|
|
|
|
default: false
|
|
|
|
|
},
|
|
|
|
|
isBot: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
|
|
|
|
description: 'Whether this account is a bot.'
|
|
|
|
|
},
|
|
|
|
|
isCat: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
|
|
|
|
description: 'Whether this account is a cat.'
|
|
|
|
|
},
|
|
|
|
|
emojis: {
|
|
|
|
|
type: 'array' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
items: {
|
|
|
|
|
type: 'object' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
properties: {
|
|
|
|
|
name: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const
|
|
|
|
|
},
|
|
|
|
|
host: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: false as const
|
|
|
|
|
},
|
|
|
|
|
url: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
format: 'url'
|
|
|
|
|
},
|
|
|
|
|
aliases: {
|
|
|
|
|
type: 'array' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
items: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
url: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
format: 'url',
|
|
|
|
|
nullable: true as const, optional: true as const,
|
|
|
|
|
},
|
|
|
|
|
createdAt: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
|
|
|
|
format: 'date-time',
|
|
|
|
|
description: 'The date that the user account was created on Misskey.'
|
|
|
|
|
},
|
|
|
|
|
updatedAt: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: true as const,
|
|
|
|
|
format: 'date-time',
|
|
|
|
|
},
|
2019-04-23 13:35:26 +00:00
|
|
|
|
bannerUrl: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
format: 'url',
|
2019-06-27 09:04:09 +00:00
|
|
|
|
nullable: true as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2020-07-18 15:24:07 +00:00
|
|
|
|
bannerBlurhash: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'any' as const,
|
|
|
|
|
nullable: true as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
bannerColor: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'any' as const,
|
2021-03-06 13:34:11 +00:00
|
|
|
|
nullable: true as const, optional: true as const,
|
|
|
|
|
default: null
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
isLocked: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
|
|
|
|
},
|
|
|
|
|
isSuspended: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
example: false
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
|
|
|
|
description: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
description: 'The user-defined UTF-8 string describing their account.',
|
|
|
|
|
example: 'Hi masters, I am Ai!'
|
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
location: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
birthday: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: true as const,
|
2021-03-06 13:34:11 +00:00
|
|
|
|
example: '2018-03-12'
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
fields: {
|
|
|
|
|
type: 'array' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
items: {
|
|
|
|
|
type: 'object' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
properties: {
|
|
|
|
|
name: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const
|
|
|
|
|
},
|
|
|
|
|
value: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
maxLength: 4
|
|
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
|
|
|
|
followersCount: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'number' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
description: 'The number of followers this account currently has.'
|
|
|
|
|
},
|
|
|
|
|
followingCount: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'number' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
description: 'The number of users this account is following.'
|
|
|
|
|
},
|
|
|
|
|
notesCount: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'number' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
description: 'The number of Notes (including renotes) issued by the user.'
|
|
|
|
|
},
|
|
|
|
|
pinnedNoteIds: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'array' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
format: 'id',
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
pinnedNotes: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'array' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'object' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
ref: 'Note'
|
|
|
|
|
}
|
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
pinnedPageId: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: false as const
|
|
|
|
|
},
|
|
|
|
|
pinnedPage: {
|
|
|
|
|
type: 'object' as const,
|
|
|
|
|
nullable: true as const, optional: false as const,
|
|
|
|
|
ref: 'Page'
|
|
|
|
|
},
|
|
|
|
|
twoFactorEnabled: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
default: false
|
|
|
|
|
},
|
|
|
|
|
usePasswordLessLogin: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
default: false
|
|
|
|
|
},
|
|
|
|
|
securityKeys: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: false as const,
|
|
|
|
|
default: false
|
|
|
|
|
},
|
|
|
|
|
avatarId: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: true as const,
|
|
|
|
|
format: 'id'
|
|
|
|
|
},
|
|
|
|
|
bannerId: {
|
|
|
|
|
type: 'string' as const,
|
|
|
|
|
nullable: true as const, optional: true as const,
|
|
|
|
|
format: 'id'
|
|
|
|
|
},
|
|
|
|
|
autoWatch: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
injectFeaturedNote: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
alwaysMarkNsfw: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
carefulBot: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
autoAcceptFollowed: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
hasUnreadSpecifiedNotes: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
hasUnreadMentions: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
hasUnreadAnnouncement: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
hasUnreadAntenna: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
hasUnreadChannel: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
hasUnreadMessagingMessage: {
|
2019-06-27 09:04:09 +00:00
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
|
hasUnreadNotification: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
|
|
|
|
},
|
|
|
|
|
hasPendingReceivedFollowRequest: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
nullable: false as const, optional: true as const,
|
|
|
|
|
},
|
|
|
|
|
integrations: {
|
|
|
|
|
type: 'object' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
mutedWords: {
|
|
|
|
|
type: 'array' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
mutingNotificationTypes: {
|
|
|
|
|
type: 'array' as const,
|
|
|
|
|
nullable: false as const, optional: true as const
|
|
|
|
|
},
|
|
|
|
|
isFollowing: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
optional: true as const, nullable: false as const
|
|
|
|
|
},
|
|
|
|
|
hasPendingFollowRequestFromYou: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
optional: true as const, nullable: false as const
|
|
|
|
|
},
|
|
|
|
|
hasPendingFollowRequestToYou: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
optional: true as const, nullable: false as const
|
|
|
|
|
},
|
|
|
|
|
isFollowed: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
optional: true as const, nullable: false as const
|
|
|
|
|
},
|
|
|
|
|
isBlocking: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
optional: true as const, nullable: false as const
|
|
|
|
|
},
|
|
|
|
|
isBlocked: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
optional: true as const, nullable: false as const
|
|
|
|
|
},
|
|
|
|
|
isMuted: {
|
|
|
|
|
type: 'boolean' as const,
|
|
|
|
|
optional: true as const, nullable: false as const
|
|
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
|
},
|
|
|
|
|
};
|