mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 10:53:09 +02:00
52774bbe64
* wip * wip * wip * Update index.ts * Update gen-openapi-spec.ts * Update api.ja-JP.md * Fix * Improve doc * Update gen-openapi-spec.ts * Update redoc.html * Improve doc * Update gen-openapi-spec.ts * Improve doc * Update CHANGELOG.md
51 lines
959 B
TypeScript
51 lines
959 B
TypeScript
import $ from 'cafy';
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
|
import define from '../../define';
|
|
import Favorite from '../../../../models/favorite';
|
|
import NoteWatching from '../../../../models/note-watching';
|
|
|
|
export const meta = {
|
|
stability: 'stable',
|
|
|
|
desc: {
|
|
'ja-JP': '指定した投稿の状態を取得します。',
|
|
'en-US': 'Get state of a note.'
|
|
},
|
|
|
|
tags: ['notes'],
|
|
|
|
requireCredential: true,
|
|
|
|
params: {
|
|
noteId: {
|
|
validator: $.type(ID),
|
|
transform: transform,
|
|
desc: {
|
|
'ja-JP': '対象の投稿のID',
|
|
'en-US': 'Target note ID.'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
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
|
|
})
|
|
]);
|
|
|
|
return {
|
|
isFavorited: favorite !== 0,
|
|
isWatching: watching !== 0
|
|
};
|
|
});
|