d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
import { Antenna } from '@/models/entities/antenna.js';
|
|
import { Note } from '@/models/entities/note.js';
|
|
import { AntennaNotes, Mutings, Notes } from '@/models/index.js';
|
|
import { genId } from '@/misc/gen-id.js';
|
|
import { isMutedUserRelated } from '@/misc/is-muted-user-related.js';
|
|
import { publishAntennaStream, publishMainStream } from '@/services/stream.js';
|
|
import { User } from '@/models/entities/user.js';
|
|
|
|
export async function addNoteToAntenna(antenna: Antenna, note: Note, noteUser: { id: User['id']; }) {
|
|
// 通知しない設定になっているか、自分自身の投稿なら既読にする
|
|
const read = !antenna.notify || (antenna.userId === noteUser.id);
|
|
|
|
AntennaNotes.insert({
|
|
id: genId(),
|
|
antennaId: antenna.id,
|
|
noteId: note.id,
|
|
read: read,
|
|
});
|
|
|
|
publishAntennaStream(antenna.id, 'note', note);
|
|
|
|
if (!read) {
|
|
const mutings = await Mutings.find({
|
|
where: {
|
|
muterId: antenna.userId,
|
|
},
|
|
select: ['muteeId'],
|
|
});
|
|
|
|
// Copy
|
|
const _note: Note = {
|
|
...note,
|
|
};
|
|
|
|
if (note.replyId != null) {
|
|
_note.reply = await Notes.findOneOrFail(note.replyId);
|
|
}
|
|
if (note.renoteId != null) {
|
|
_note.renote = await Notes.findOneOrFail(note.renoteId);
|
|
}
|
|
|
|
if (isMutedUserRelated(_note, new Set<string>(mutings.map(x => x.muteeId)))) {
|
|
return;
|
|
}
|
|
|
|
// 2秒経っても既読にならなかったら通知
|
|
setTimeout(async () => {
|
|
const unread = await AntennaNotes.findOne({ antennaId: antenna.id, read: false });
|
|
if (unread) {
|
|
publishMainStream(antenna.userId, 'unreadAntenna', antenna);
|
|
}
|
|
}, 2000);
|
|
}
|
|
}
|