2022-02-27 02:07:39 +00:00
|
|
|
import { NoteFavorites, Notes, NoteThreadMutings, NoteWatchings } from '@/models/index.js';
|
2022-06-14 09:01:23 +00:00
|
|
|
import define from '../../define.js';
|
2019-02-04 16:11:06 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2019-02-04 16:11:06 +00:00
|
|
|
|
2021-03-06 13:34:11 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
properties: {
|
|
|
|
isFavorited: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
isWatching: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-10-31 06:30:22 +00:00
|
|
|
},
|
|
|
|
isMutedThread: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-10-31 06:30:22 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2019-02-04 16:11:06 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 05:05:32 +00:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2022-03-26 06:34:00 +00:00
|
|
|
const note = await Notes.findOneByOrFail({ id: ps.noteId });
|
2021-10-31 06:30:22 +00:00
|
|
|
|
|
|
|
const [favorite, watching, threadMuting] = await Promise.all([
|
2019-04-07 12:50:36 +00:00
|
|
|
NoteFavorites.count({
|
|
|
|
where: {
|
2020-03-23 10:42:26 +00:00
|
|
|
userId: user.id,
|
2021-10-31 06:30:22 +00:00
|
|
|
noteId: note.id,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
take: 1,
|
2019-02-04 16:24:44 +00:00
|
|
|
}),
|
2019-04-07 12:50:36 +00:00
|
|
|
NoteWatchings.count({
|
|
|
|
where: {
|
2020-03-23 10:42:26 +00:00
|
|
|
userId: user.id,
|
2021-10-31 06:30:22 +00:00
|
|
|
noteId: note.id,
|
2019-04-07 12:50:36 +00:00
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
take: 1,
|
2021-10-31 06:30:22 +00:00
|
|
|
}),
|
|
|
|
NoteThreadMutings.count({
|
|
|
|
where: {
|
|
|
|
userId: user.id,
|
|
|
|
threadId: note.threadId || note.id,
|
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
take: 1,
|
2021-10-31 06:30:22 +00:00
|
|
|
}),
|
2019-02-04 16:24:44 +00:00
|
|
|
]);
|
2019-02-04 16:11:06 +00:00
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
return {
|
2019-02-04 16:24:44 +00:00
|
|
|
isFavorited: favorite !== 0,
|
2021-10-31 06:30:22 +00:00
|
|
|
isWatching: watching !== 0,
|
|
|
|
isMutedThread: threadMuting !== 0,
|
2019-02-22 02:46:58 +00:00
|
|
|
};
|
|
|
|
});
|