mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 20:53:08 +02:00
d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import define from '../../../define.js';
|
|
import { getNote } from '../../../common/getters.js';
|
|
import { ApiError } from '../../../error.js';
|
|
import { Notes, NoteThreadMutings } from '@/models/index.js';
|
|
import { genId } from '@/misc/gen-id.js';
|
|
import readNote from '@/services/note/read.js';
|
|
|
|
export const meta = {
|
|
tags: ['notes'],
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'write:account',
|
|
|
|
errors: {
|
|
noSuchNote: {
|
|
message: 'No such note.',
|
|
code: 'NO_SUCH_NOTE',
|
|
id: '5ff67ada-ed3b-2e71-8e87-a1a421e177d2',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['noteId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, 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,
|
|
});
|
|
});
|