2019-04-07 07:50:36 -05:00
|
|
|
import { EntityRepository, Repository, In } from 'typeorm';
|
|
|
|
import { Note } from '../entities/note';
|
|
|
|
import { User } from '../entities/user';
|
|
|
|
import { unique, concat } from '../../prelude/array';
|
|
|
|
import { nyaize } from '../../misc/nyaize';
|
|
|
|
import { Emojis, Users, Apps, PollVotes, DriveFiles, NoteReactions, Followings, Polls } from '..';
|
2019-04-12 11:43:22 -05:00
|
|
|
import { ensure } from '../../prelude/ensure';
|
2019-06-27 04:04:09 -05:00
|
|
|
import { SchemaType } from '../../misc/schema';
|
2019-04-23 08:35:26 -05:00
|
|
|
import { awaitAll } from '../../prelude/await-all';
|
|
|
|
|
|
|
|
export type PackedNote = SchemaType<typeof packedNoteSchema>;
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
@EntityRepository(Note)
|
|
|
|
export class NoteRepository extends Repository<Note> {
|
|
|
|
public validateCw(x: string) {
|
|
|
|
return x.trim().length <= 100;
|
|
|
|
}
|
|
|
|
|
2019-04-23 08:35:26 -05:00
|
|
|
private async hideNote(packedNote: PackedNote, meId: User['id'] | null) {
|
2019-04-07 07:50:36 -05:00
|
|
|
let hide = false;
|
|
|
|
|
|
|
|
// visibility が specified かつ自分が指定されていなかったら非表示
|
2019-04-23 08:35:26 -05:00
|
|
|
if (packedNote.visibility === 'specified') {
|
2019-04-07 07:50:36 -05:00
|
|
|
if (meId == null) {
|
|
|
|
hide = true;
|
|
|
|
} else if (meId === packedNote.userId) {
|
|
|
|
hide = false;
|
|
|
|
} else {
|
|
|
|
// 指定されているかどうか
|
2019-04-23 08:35:26 -05:00
|
|
|
const specified = packedNote.visibleUserIds!.some((id: any) => meId === id);
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
if (specified) {
|
|
|
|
hide = false;
|
|
|
|
} else {
|
|
|
|
hide = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// visibility が followers かつ自分が投稿者のフォロワーでなかったら非表示
|
|
|
|
if (packedNote.visibility == 'followers') {
|
|
|
|
if (meId == null) {
|
|
|
|
hide = true;
|
|
|
|
} else if (meId === packedNote.userId) {
|
|
|
|
hide = false;
|
2019-04-23 08:35:26 -05:00
|
|
|
} else if (packedNote.reply && (meId === (packedNote.reply as PackedNote).userId)) {
|
2019-04-07 07:50:36 -05:00
|
|
|
// 自分の投稿に対するリプライ
|
|
|
|
hide = false;
|
2019-04-23 08:35:26 -05:00
|
|
|
} else if (packedNote.mentions && packedNote.mentions.some(id => meId === id)) {
|
2019-04-07 07:50:36 -05: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 08:35:26 -05:00
|
|
|
packedNote.visibleUserIds = undefined;
|
2019-04-07 07:50:36 -05:00
|
|
|
packedNote.fileIds = [];
|
|
|
|
packedNote.files = [];
|
|
|
|
packedNote.text = null;
|
2019-04-23 08:35:26 -05:00
|
|
|
packedNote.poll = undefined;
|
2019-04-07 07:50:36 -05:00
|
|
|
packedNote.cw = null;
|
2019-04-23 08:35:26 -05:00
|
|
|
packedNote.geo = undefined;
|
2019-04-07 07:50:36 -05:00
|
|
|
packedNote.isHidden = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public async pack(
|
|
|
|
src: Note['id'] | Note,
|
2019-04-12 11:43:22 -05:00
|
|
|
me?: User['id'] | User | null | undefined,
|
2019-04-07 07:50:36 -05:00
|
|
|
options?: {
|
|
|
|
detail?: boolean;
|
|
|
|
skipHide?: boolean;
|
|
|
|
}
|
2019-04-23 08:35:26 -05:00
|
|
|
): Promise<PackedNote> {
|
2019-04-07 07:50:36 -05:00
|
|
|
const opts = Object.assign({
|
|
|
|
detail: true,
|
|
|
|
skipHide: false
|
|
|
|
}, options);
|
|
|
|
|
|
|
|
const meId = me ? typeof me === 'string' ? me : me.id : null;
|
2019-04-12 11:43:22 -05:00
|
|
|
const note = typeof src === 'object' ? src : await this.findOne(src).then(ensure);
|
2019-04-07 07:50:36 -05:00
|
|
|
const host = note.userHost;
|
|
|
|
|
|
|
|
async function populatePoll() {
|
2019-04-16 10:34:49 -05:00
|
|
|
const poll = await Polls.findOne(note.id).then(ensure);
|
2019-04-07 07:50:36 -05: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 11:43:22 -05:00
|
|
|
userId: meId!,
|
2019-04-07 07:50:36 -05: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 11:43:22 -05:00
|
|
|
userId: meId!,
|
2019-04-07 07:50:36 -05:00
|
|
|
noteId: note.id
|
|
|
|
});
|
|
|
|
|
|
|
|
if (vote) {
|
|
|
|
choices[vote.choice].isVoted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
multiple: poll.multiple,
|
|
|
|
expiresAt: poll.expiresAt,
|
|
|
|
choices
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-01-06 21:28:20 -06:00
|
|
|
async function populateEmojis(emojiNames: string[], noteUserHost: string | null, reactionNames: string[]) {
|
|
|
|
const where = [] as {}[];
|
|
|
|
|
|
|
|
if (emojiNames?.length > 0) {
|
|
|
|
where.push({
|
|
|
|
name: In(emojiNames),
|
|
|
|
host: noteUserHost
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-01-08 23:37:48 -06:00
|
|
|
reactionNames = reactionNames?.filter(x => x.match(/^:[^:]+:$/)).map(x => x.replace(/:/g, ''));
|
|
|
|
|
2020-01-06 21:28:20 -06:00
|
|
|
if (reactionNames?.length > 0) {
|
|
|
|
where.push({
|
2020-01-08 23:37:48 -06:00
|
|
|
name: In(reactionNames),
|
2020-01-06 21:28:20 -06:00
|
|
|
host: null
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (where.length === 0) return [];
|
|
|
|
|
|
|
|
return Emojis.find({
|
|
|
|
where,
|
|
|
|
select: ['name', 'host', 'url', 'aliases']
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
async function populateMyReaction() {
|
|
|
|
const reaction = await NoteReactions.findOne({
|
2019-04-12 11:43:22 -05:00
|
|
|
userId: meId!,
|
2019-04-07 07:50:36 -05:00
|
|
|
noteId: note.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (reaction) {
|
|
|
|
return reaction.reaction;
|
|
|
|
}
|
|
|
|
|
2019-04-13 01:02:15 -05:00
|
|
|
return undefined;
|
2019-04-07 07:50:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let text = note.text;
|
|
|
|
|
2019-06-28 04:54:10 -05:00
|
|
|
if (note.name && note.uri) {
|
|
|
|
text = `【${note.name}】\n${(note.text || '').trim()}\n${note.uri}`;
|
2019-04-07 07:50:36 -05:00
|
|
|
}
|
|
|
|
|
2019-04-23 08:35:26 -05:00
|
|
|
const packed = await awaitAll({
|
2019-04-07 07:50:36 -05:00
|
|
|
id: note.id,
|
2019-04-23 08:35:26 -05:00
|
|
|
createdAt: note.createdAt.toISOString(),
|
2019-04-13 00:55:59 -05:00
|
|
|
app: note.appId ? Apps.pack(note.appId) : undefined,
|
2019-04-07 07:50:36 -05:00
|
|
|
userId: note.userId,
|
|
|
|
user: Users.pack(note.user || note.userId, meId),
|
|
|
|
text: text,
|
|
|
|
cw: note.cw,
|
|
|
|
visibility: note.visibility,
|
2019-04-13 00:55:59 -05:00
|
|
|
localOnly: note.localOnly || undefined,
|
|
|
|
visibleUserIds: note.visibility === 'specified' ? note.visibleUserIds : undefined,
|
|
|
|
viaMobile: note.viaMobile || undefined,
|
2019-04-08 02:49:05 -05:00
|
|
|
renoteCount: note.renoteCount,
|
|
|
|
repliesCount: note.repliesCount,
|
2019-04-07 07:50:36 -05:00
|
|
|
reactions: note.reactions,
|
2019-06-07 06:40:05 -05:00
|
|
|
tags: note.tags.length > 0 ? note.tags : undefined,
|
2020-01-06 21:28:20 -06:00
|
|
|
emojis: populateEmojis(note.emojis, host, Object.keys(note.reactions)),
|
2019-04-07 07:50:36 -05:00
|
|
|
fileIds: note.fileIds,
|
|
|
|
files: DriveFiles.packMany(note.fileIds),
|
|
|
|
replyId: note.replyId,
|
|
|
|
renoteId: note.renoteId,
|
2019-04-17 11:05:40 -05:00
|
|
|
mentions: note.mentions.length > 0 ? note.mentions : undefined,
|
2019-04-16 17:25:34 -05:00
|
|
|
uri: note.uri || undefined,
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
...(opts.detail ? {
|
|
|
|
reply: note.replyId ? this.pack(note.replyId, meId, {
|
|
|
|
detail: false
|
2019-04-13 00:55:59 -05:00
|
|
|
}) : undefined,
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
renote: note.renoteId ? this.pack(note.renoteId, meId, {
|
2019-04-08 03:04:37 -05:00
|
|
|
detail: true
|
2019-04-13 00:55:59 -05:00
|
|
|
}) : undefined,
|
2019-04-07 07:50:36 -05:00
|
|
|
|
2019-04-13 00:55:59 -05:00
|
|
|
poll: note.hasPoll ? populatePoll() : undefined,
|
2019-04-07 07:50:36 -05:00
|
|
|
|
|
|
|
...(meId ? {
|
|
|
|
myReaction: populateMyReaction()
|
|
|
|
} : {})
|
|
|
|
} : {})
|
|
|
|
});
|
|
|
|
|
|
|
|
if (packed.user.isCat && packed.text) {
|
|
|
|
packed.text = nyaize(packed.text);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!opts.skipHide) {
|
|
|
|
await this.hideNote(packed, meId);
|
|
|
|
}
|
|
|
|
|
|
|
|
return packed;
|
|
|
|
}
|
2019-04-24 23:27:07 -05:00
|
|
|
|
|
|
|
public packMany(
|
|
|
|
notes: (Note['id'] | Note)[],
|
|
|
|
me?: User['id'] | User | null | undefined,
|
|
|
|
options?: {
|
|
|
|
detail?: boolean;
|
|
|
|
skipHide?: boolean;
|
|
|
|
}
|
|
|
|
) {
|
|
|
|
return Promise.all(notes.map(n => this.pack(n, me, options)));
|
|
|
|
}
|
2019-04-07 07:50:36 -05:00
|
|
|
}
|
2019-04-23 08:35:26 -05:00
|
|
|
|
|
|
|
export const packedNoteSchema = {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
properties: {
|
|
|
|
id: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'id',
|
|
|
|
description: 'The unique identifier for this Note.',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
createdAt: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'date-time',
|
|
|
|
description: 'The date that the Note was created on Misskey.'
|
|
|
|
},
|
|
|
|
text: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
cw: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
userId: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'id',
|
|
|
|
},
|
|
|
|
user: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'User',
|
2019-06-27 04:04:09 -05:00
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
replyId: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
renoteId: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'id',
|
|
|
|
example: 'xxxxxxxxxx',
|
|
|
|
},
|
|
|
|
reply: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'Note'
|
|
|
|
},
|
|
|
|
renote: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'Note'
|
|
|
|
},
|
|
|
|
viaMobile: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
isHidden: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
visibility: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
mentions: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
items: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'id'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
visibleUserIds: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
items: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'id'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
fileIds: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
items: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
format: 'id'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
files: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
items: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
ref: 'DriveFile'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
tags: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: true as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
items: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
poll: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
geo: {
|
2019-06-27 04:04:09 -05:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: true as const, nullable: true as const,
|
2019-04-23 08:35:26 -05:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|