2019-04-07 12:50:36 +00:00
|
|
|
import { EntityRepository, Repository, In } from 'typeorm';
|
2021-04-02 01:36:11 +00:00
|
|
|
import * as mfm from 'mfm-js';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { Note } from '../entities/note';
|
|
|
|
import { User } from '../entities/user';
|
|
|
|
import { Users, PollVotes, DriveFiles, NoteReactions, Followings, Polls, Channels } from '../index';
|
|
|
|
import { SchemaType } from '@/misc/schema';
|
|
|
|
import { nyaize } from '@/misc/nyaize';
|
|
|
|
import { awaitAll } from '../../prelude/await-all';
|
|
|
|
import { convertLegacyReaction, convertLegacyReactions, decodeReaction } from '@/misc/reaction-lib';
|
|
|
|
import { NoteReaction } from '../entities/note-reaction';
|
|
|
|
import { aggregateNoteEmojis, populateEmojis, prefetchEmojis } from '@/misc/populate-emojis';
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
export type PackedNote = SchemaType<typeof packedNoteSchema>;
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
@EntityRepository(Note)
|
|
|
|
export class NoteRepository extends Repository<Note> {
|
|
|
|
public validateCw(x: string) {
|
|
|
|
return x.trim().length <= 100;
|
|
|
|
}
|
|
|
|
|
2019-04-23 13:35:26 +00:00
|
|
|
private async hideNote(packedNote: PackedNote, meId: User['id'] | null) {
|
2019-04-07 12:50:36 +00:00
|
|
|
let hide = false;
|
|
|
|
|
|
|
|
// visibility が specified かつ自分が指定されていなかったら非表示
|
2019-04-23 13:35:26 +00:00
|
|
|
if (packedNote.visibility === 'specified') {
|
2019-04-07 12:50:36 +00:00
|
|
|
if (meId == null) {
|
|
|
|
hide = true;
|
|
|
|
} else if (meId === packedNote.userId) {
|
|
|
|
hide = false;
|
|
|
|
} else {
|
|
|
|
// 指定されているかどうか
|
2019-04-23 13:35:26 +00:00
|
|
|
const specified = packedNote.visibleUserIds!.some((id: any) => meId === id);
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
if (specified) {
|
|
|
|
hide = false;
|
|
|
|
} else {
|
|
|
|
hide = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// visibility が followers かつ自分が投稿者のフォロワーでなかったら非表示
|
2020-04-03 23:46:54 +00:00
|
|
|
if (packedNote.visibility === 'followers') {
|
2019-04-07 12:50:36 +00:00
|
|
|
if (meId == null) {
|
|
|
|
hide = true;
|
|
|
|
} else if (meId === packedNote.userId) {
|
|
|
|
hide = false;
|
2019-04-23 13:35:26 +00:00
|
|
|
} else if (packedNote.reply && (meId === (packedNote.reply as PackedNote).userId)) {
|
2019-04-07 12:50:36 +00:00
|
|
|
// 自分の投稿に対するリプライ
|
|
|
|
hide = false;
|
2019-04-23 13:35:26 +00:00
|
|
|
} else if (packedNote.mentions && packedNote.mentions.some(id => meId === id)) {
|
2019-04-07 12:50:36 +00:00
|
|
|
// 自分へのメンション
|
|
|
|
hide = false;
|
|
|
|
} else {
|
|
|
|
// フォロワーかどうか
|
|
|
|
const following = await Followings.findOne({
|
|
|
|
followeeId: packedNote.userId,
|
|
|
|
followerId: meId
|
|
|
|
});
|
|
|
|
|
|
|
|
if (following == null) {
|
|
|
|
hide = true;
|
|
|
|
} else {
|
|
|
|
hide = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (hide) {
|
2019-04-23 13:35:26 +00:00
|
|
|
packedNote.visibleUserIds = undefined;
|
2019-04-07 12:50:36 +00:00
|
|
|
packedNote.fileIds = [];
|
|
|
|
packedNote.files = [];
|
|
|
|
packedNote.text = null;
|
2019-04-23 13:35:26 +00:00
|
|
|
packedNote.poll = undefined;
|
2019-04-07 12:50:36 +00:00
|
|
|
packedNote.cw = null;
|
|
|
|
packedNote.isHidden = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async pack(
|
|
|
|
src: Note['id'] | Note,
|
2021-03-24 02:05:37 +00:00
|
|
|
me?: { id: User['id'] } | null | undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
options?: {
|
|
|
|
detail?: boolean;
|
|
|
|
skipHide?: boolean;
|
2021-03-19 01:53:09 +00:00
|
|
|
_hint_?: {
|
|
|
|
myReactions: Map<Note['id'], NoteReaction | null>;
|
|
|
|
};
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
): Promise<PackedNote> {
|
2019-04-07 12:50:36 +00:00
|
|
|
const opts = Object.assign({
|
|
|
|
detail: true,
|
|
|
|
skipHide: false
|
|
|
|
}, options);
|
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
const meId = me ? me.id : null;
|
2021-02-13 06:33:38 +00:00
|
|
|
const note = typeof src === 'object' ? src : await this.findOneOrFail(src);
|
2019-04-07 12:50:36 +00:00
|
|
|
const host = note.userHost;
|
|
|
|
|
|
|
|
async function populatePoll() {
|
2021-02-13 06:33:38 +00:00
|
|
|
const poll = await Polls.findOneOrFail(note.id);
|
2019-04-07 12:50:36 +00:00
|
|
|
const choices = poll.choices.map(c => ({
|
|
|
|
text: c,
|
|
|
|
votes: poll.votes[poll.choices.indexOf(c)],
|
|
|
|
isVoted: false
|
|
|
|
}));
|
|
|
|
|
|
|
|
if (poll.multiple) {
|
|
|
|
const votes = await PollVotes.find({
|
2019-04-12 16:43:22 +00:00
|
|
|
userId: meId!,
|
2019-04-07 12:50:36 +00:00
|
|
|
noteId: note.id
|
|
|
|
});
|
|
|
|
|
|
|
|
const myChoices = votes.map(v => v.choice);
|
|
|
|
for (const myChoice of myChoices) {
|
|
|
|
choices[myChoice].isVoted = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const vote = await PollVotes.findOne({
|
2019-04-12 16:43:22 +00:00
|
|
|
userId: meId!,
|
2019-04-07 12:50:36 +00:00
|
|
|
noteId: note.id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (vote) {
|
|
|
|
choices[vote.choice].isVoted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
multiple: poll.multiple,
|
|
|
|
expiresAt: poll.expiresAt,
|
|
|
|
choices
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
async function populateMyReaction() {
|
2021-03-19 01:53:09 +00:00
|
|
|
if (options?._hint_?.myReactions) {
|
|
|
|
const reaction = options._hint_.myReactions.get(note.id);
|
|
|
|
if (reaction) {
|
|
|
|
return convertLegacyReaction(reaction.reaction);
|
|
|
|
} else if (reaction === null) {
|
|
|
|
return undefined;
|
|
|
|
}
|
|
|
|
// 実装上抜けがあるだけかもしれないので、「ヒントに含まれてなかったら(=undefinedなら)return」のようにはしない
|
|
|
|
}
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
const reaction = await NoteReactions.findOne({
|
2019-04-12 16:43:22 +00:00
|
|
|
userId: meId!,
|
2019-04-07 12:50:36 +00:00
|
|
|
noteId: note.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (reaction) {
|
2020-01-29 19:37:25 +00:00
|
|
|
return convertLegacyReaction(reaction.reaction);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2019-04-13 06:02:15 +00:00
|
|
|
return undefined;
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let text = note.text;
|
|
|
|
|
2020-04-02 12:59:14 +00:00
|
|
|
if (note.name && (note.url || note.uri)) {
|
|
|
|
text = `【${note.name}】\n${(note.text || '').trim()}\n\n${note.url || note.uri}`;
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
2020-08-18 13:44:21 +00:00
|
|
|
const channel = note.channelId
|
|
|
|
? note.channel
|
|
|
|
? note.channel
|
|
|
|
: await Channels.findOne(note.channelId)
|
|
|
|
: null;
|
|
|
|
|
2021-03-21 15:44:38 +00:00
|
|
|
const reactionEmojiNames = Object.keys(note.reactions).filter(x => x?.startsWith(':')).map(x => decodeReaction(x).reaction).map(x => x.replace(/:/g, ''));
|
|
|
|
|
2019-04-23 13:35:26 +00:00
|
|
|
const packed = await awaitAll({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: note.id,
|
2019-04-23 13:35:26 +00:00
|
|
|
createdAt: note.createdAt.toISOString(),
|
2019-04-07 12:50:36 +00:00
|
|
|
userId: note.userId,
|
2021-03-24 02:05:37 +00:00
|
|
|
user: Users.pack(note.user || note.userId, me, {
|
2021-03-20 04:54:59 +00:00
|
|
|
detail: false,
|
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
text: text,
|
|
|
|
cw: note.cw,
|
|
|
|
visibility: note.visibility,
|
2019-04-13 05:55:59 +00:00
|
|
|
localOnly: note.localOnly || undefined,
|
|
|
|
visibleUserIds: note.visibility === 'specified' ? note.visibleUserIds : undefined,
|
|
|
|
viaMobile: note.viaMobile || undefined,
|
2019-04-08 07:49:05 +00:00
|
|
|
renoteCount: note.renoteCount,
|
|
|
|
repliesCount: note.repliesCount,
|
2020-02-18 21:36:50 +00:00
|
|
|
reactions: convertLegacyReactions(note.reactions),
|
2019-06-07 11:40:05 +00:00
|
|
|
tags: note.tags.length > 0 ? note.tags : undefined,
|
2021-03-21 15:44:38 +00:00
|
|
|
emojis: populateEmojis(note.emojis.concat(reactionEmojiNames), host),
|
2019-04-07 12:50:36 +00:00
|
|
|
fileIds: note.fileIds,
|
|
|
|
files: DriveFiles.packMany(note.fileIds),
|
|
|
|
replyId: note.replyId,
|
|
|
|
renoteId: note.renoteId,
|
2020-08-18 13:44:21 +00:00
|
|
|
channelId: note.channelId || undefined,
|
|
|
|
channel: channel ? {
|
|
|
|
id: channel.id,
|
|
|
|
name: channel.name,
|
|
|
|
} : undefined,
|
2019-04-17 16:05:40 +00:00
|
|
|
mentions: note.mentions.length > 0 ? note.mentions : undefined,
|
2019-04-16 22:25:34 +00:00
|
|
|
uri: note.uri || undefined,
|
2020-04-02 12:59:14 +00:00
|
|
|
url: note.url || undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
...(opts.detail ? {
|
2021-03-24 02:05:37 +00:00
|
|
|
reply: note.replyId ? this.pack(note.reply || note.replyId, me, {
|
2021-03-19 01:53:09 +00:00
|
|
|
detail: false,
|
|
|
|
_hint_: options?._hint_
|
2019-04-13 05:55:59 +00:00
|
|
|
}) : undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
renote: note.renoteId ? this.pack(note.renote || note.renoteId, me, {
|
2021-03-19 01:53:09 +00:00
|
|
|
detail: true,
|
|
|
|
_hint_: options?._hint_
|
2019-04-13 05:55:59 +00:00
|
|
|
}) : undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
|
2019-04-13 05:55:59 +00:00
|
|
|
poll: note.hasPoll ? populatePoll() : undefined,
|
2019-04-07 12:50:36 +00:00
|
|
|
|
|
|
|
...(meId ? {
|
|
|
|
myReaction: populateMyReaction()
|
|
|
|
} : {})
|
|
|
|
} : {})
|
|
|
|
});
|
|
|
|
|
|
|
|
if (packed.user.isCat && packed.text) {
|
2021-04-02 01:36:11 +00:00
|
|
|
const tokens = packed.text ? mfm.parse(packed.text) : [];
|
|
|
|
mfm.inspect(tokens, node => {
|
|
|
|
if (node.type === 'text') {
|
|
|
|
node.props.text = nyaize(node.props.text);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
packed.text = mfm.toString(tokens);
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!opts.skipHide) {
|
|
|
|
await this.hideNote(packed, meId);
|
|
|
|
}
|
|
|
|
|
|
|
|
return packed;
|
|
|
|
}
|
2019-04-25 04:27:07 +00:00
|
|
|
|
2021-03-19 01:53:09 +00:00
|
|
|
public async packMany(
|
2021-03-22 02:38:32 +00:00
|
|
|
notes: Note[],
|
2021-03-24 02:05:37 +00:00
|
|
|
me?: { id: User['id'] } | null | undefined,
|
2019-04-25 04:27:07 +00:00
|
|
|
options?: {
|
|
|
|
detail?: boolean;
|
|
|
|
skipHide?: boolean;
|
|
|
|
}
|
|
|
|
) {
|
2021-03-19 01:53:09 +00:00
|
|
|
if (notes.length === 0) return [];
|
|
|
|
|
2021-03-24 02:05:37 +00:00
|
|
|
const meId = me ? me.id : null;
|
2021-03-19 01:53:09 +00:00
|
|
|
const myReactionsMap = new Map<Note['id'], NoteReaction | null>();
|
|
|
|
if (meId) {
|
2021-03-22 02:38:32 +00:00
|
|
|
const renoteIds = notes.filter(n => n.renoteId != null).map(n => n.renoteId!);
|
|
|
|
const targets = [...notes.map(n => n.id), ...renoteIds];
|
2021-03-19 01:53:09 +00:00
|
|
|
const myReactions = await NoteReactions.find({
|
|
|
|
userId: meId,
|
|
|
|
noteId: In(targets),
|
|
|
|
});
|
|
|
|
|
|
|
|
for (const target of targets) {
|
|
|
|
myReactionsMap.set(target, myReactions.find(reaction => reaction.noteId === target) || null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 03:41:33 +00:00
|
|
|
await prefetchEmojis(aggregateNoteEmojis(notes));
|
|
|
|
|
2021-03-19 01:53:09 +00:00
|
|
|
return await Promise.all(notes.map(n => this.pack(n, me, {
|
|
|
|
...options,
|
|
|
|
_hint_: {
|
2021-03-21 15:44:38 +00:00
|
|
|
myReactions: myReactionsMap
|
2021-03-19 01:53:09 +00:00
|
|
|
}
|
|
|
|
})));
|
2019-04-25 04:27:07 +00:00
|
|
|
}
|
2019-04-07 12:50:36 +00:00
|
|
|
}
|
2019-04-23 13:35:26 +00:00
|
|
|
|
|
|
|
export const packedNoteSchema = {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: 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,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'date-time',
|
|
|
|
},
|
|
|
|
text: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
cw: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
userId: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
user: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'User',
|
2019-06-27 09:04:09 +00:00
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
replyId: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
renoteId: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
reply: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'Note'
|
|
|
|
},
|
|
|
|
renote: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'Note'
|
|
|
|
},
|
|
|
|
viaMobile: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
isHidden: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
visibility: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
mentions: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
visibleUserIds: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
fileIds: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
format: 'id'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
files: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'DriveFile'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tags: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
items: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
poll: {
|
2019-06-27 09:04:09 +00:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
2020-08-18 13:44:21 +00:00
|
|
|
channelId: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
channel: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
|
|
|
ref: 'Channel'
|
|
|
|
},
|
2021-02-13 08:50:51 +00:00
|
|
|
localOnly: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
},
|
|
|
|
emojis: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
name: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
url: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
reactions: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
renoteCount: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
repliesCount: {
|
|
|
|
type: 'number' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
},
|
|
|
|
uri: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
},
|
|
|
|
url: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
},
|
2021-05-04 12:15:57 +00:00
|
|
|
|
2021-02-13 08:50:51 +00:00
|
|
|
myReaction: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
|
|
|
},
|
2019-04-23 13:35:26 +00:00
|
|
|
},
|
|
|
|
};
|