rudeshark.net/src/server/api/endpoints/notes/state.ts
syuilo 2756f553c6
Improve error handling of API (#4345)
* wip

* wip

* wip

* Update attached_notes.ts

* wip

* Refactor

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Update call.ts

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* ✌️

* Fix
2019-02-22 11:46:58 +09:00

50 lines
940 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.'
},
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
};
});