2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2019-02-04 17:11:06 +01:00
|
|
|
import define from '../../define';
|
|
|
|
import Favorite from '../../../../models/favorite';
|
2019-02-04 17:24:44 +01:00
|
|
|
import NoteWatching from '../../../../models/note-watching';
|
2019-02-04 17:11:06 +01:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
stability: 'stable',
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定した投稿の状態を取得します。',
|
|
|
|
'en-US': 'Get state of a note.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2019-02-04 17:11:06 +01:00
|
|
|
requireCredential: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
transform: transform,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象の投稿のID',
|
|
|
|
'en-US': 'Target note ID.'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-04 17:24:44 +01:00
|
|
|
const [favorite, watching] = await Promise.all([
|
|
|
|
Favorite.count({
|
|
|
|
userId: user._id,
|
|
|
|
noteId: ps.noteId
|
|
|
|
}, {
|
|
|
|
limit: 1
|
|
|
|
}),
|
|
|
|
NoteWatching.count({
|
|
|
|
userId: user._id,
|
|
|
|
noteId: ps.noteId
|
|
|
|
}, {
|
|
|
|
limit: 1
|
|
|
|
})
|
|
|
|
]);
|
2019-02-04 17:11:06 +01:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return {
|
2019-02-04 17:24:44 +01:00
|
|
|
isFavorited: favorite !== 0,
|
|
|
|
isWatching: watching !== 0
|
2019-02-22 03:46:58 +01:00
|
|
|
};
|
|
|
|
});
|