2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
2021-10-31 06:30:22 +00:00
|
|
|
import { NoteFavorites, Notes, NoteThreadMutings, NoteWatchings } from '@/models/index';
|
2019-02-04 16:11:06 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2019-02-04 16:11:06 +00:00
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
}
|
2021-03-06 13:34:11 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
isFavorited: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
|
|
|
isWatching: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
2021-10-31 06:30:22 +00:00
|
|
|
},
|
|
|
|
isMutedThread: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const
|
|
|
|
},
|
2021-03-06 13:34:11 +00:00
|
|
|
}
|
2019-02-04 16:11:06 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
2021-10-31 06:30:22 +00:00
|
|
|
const note = await Notes.findOneOrFail(ps.noteId);
|
|
|
|
|
|
|
|
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
|
|
|
},
|
|
|
|
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
|
|
|
},
|
|
|
|
take: 1
|
2021-10-31 06:30:22 +00:00
|
|
|
}),
|
|
|
|
NoteThreadMutings.count({
|
|
|
|
where: {
|
|
|
|
userId: user.id,
|
|
|
|
threadId: note.threadId || note.id,
|
|
|
|
},
|
|
|
|
take: 1
|
|
|
|
}),
|
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
|
|
|
};
|
|
|
|
});
|