2021-10-31 08:30:22 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../../define';
|
|
|
|
import { getNote } from '../../../common/getters';
|
|
|
|
import { ApiError } from '../../../error';
|
|
|
|
import { Notes, NoteThreadMutings } from '@/models';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
|
|
|
import readNote from '@/services/note/read';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2021-10-31 08:30:22 +02:00
|
|
|
|
|
|
|
kind: 'write:account',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2021-10-31 08:30:22 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '5ff67ada-ed3b-2e71-8e87-a1a421e177d2',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2021-10-31 08:30:22 +02:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2021-10-31 08:30:22 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
|
|
|
});
|
|
|
|
|
|
|
|
const mutedNotes = await Notes.find({
|
|
|
|
where: [{
|
|
|
|
id: note.threadId || note.id,
|
|
|
|
}, {
|
|
|
|
threadId: note.threadId || note.id,
|
|
|
|
}],
|
|
|
|
});
|
|
|
|
|
|
|
|
await readNote(user.id, mutedNotes);
|
|
|
|
|
|
|
|
await NoteThreadMutings.insert({
|
|
|
|
id: genId(),
|
|
|
|
createdAt: new Date(),
|
|
|
|
threadId: note.threadId || note.id,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
|
|
|
});
|