Sharkey/src/server/api/endpoints/notes.ts

121 lines
2.4 KiB
TypeScript
Raw Normal View History

2018-07-07 13:19:00 +03:00
import $ from 'cafy'; import ID from '../../../misc/cafy-id';
import Note, { packMany } from '../../../models/note';
import getParams from '../get-params';
export const meta = {
desc: {
'ja-JP': '投稿を取得します。'
},
params: {
local: $.bool.optional.note({
desc: {
'ja-JP': 'ローカルの投稿に限定するか否か'
}
}),
reply: $.bool.optional.note({
desc: {
'ja-JP': '返信に限定するか否か'
}
}),
renote: $.bool.optional.note({
desc: {
'ja-JP': 'Renoteに限定するか否か'
}
}),
withFiles: $.bool.optional.note({
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
}
}),
media: $.bool.optional.note({
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
}
}),
poll: $.bool.optional.note({
desc: {
'ja-JP': 'アンケートが添付された投稿に限定するか否か'
}
}),
limit: $.num.optional.range(1, 100).note({
default: 10
}),
sinceId: $.type(ID).optional.note({}),
untilId: $.type(ID).optional.note({}),
}
};
2017-03-03 01:06:34 +02:00
2018-07-05 20:58:29 +03:00
export default (params: any) => new Promise(async (res, rej) => {
const [ps, psErr] = getParams(meta, params);
if (psErr) throw psErr;
2017-03-03 01:06:34 +02:00
2018-03-29 08:48:47 +03:00
// Check if both of sinceId and untilId is specified
if (ps.sinceId && ps.untilId) {
2018-03-29 08:48:47 +03:00
return rej('cannot set sinceId and untilId');
2017-03-03 21:28:38 +02:00
}
2017-03-03 01:06:34 +02:00
2017-03-03 21:28:38 +02:00
// Construct query
const sort = {
_id: -1
};
2018-05-28 19:50:01 +03:00
const query = {
visibility: 'public'
} as any;
if (ps.sinceId) {
2017-03-03 21:28:38 +02:00
sort._id = 1;
query._id = {
$gt: ps.sinceId
2017-03-03 21:28:38 +02:00
};
} else if (ps.untilId) {
2017-03-03 21:28:38 +02:00
query._id = {
$lt: ps.untilId
2017-03-03 01:06:34 +02:00
};
2017-03-03 21:28:38 +02:00
}
2017-03-03 01:06:34 +02:00
if (ps.local) {
2018-05-23 09:47:51 +03:00
query['_user.host'] = null;
}
if (ps.reply != undefined) {
query.replyId = ps.reply ? { $exists: true, $ne: null } : null;
}
if (ps.renote != undefined) {
query.renoteId = ps.renote ? { $exists: true, $ne: null } : null;
}
const withFiles = ps.withFiles != undefined ? ps.withFiles : ps.media;
if (withFiles) {
query.fileIds = withFiles ? { $exists: true, $ne: null } : [];
2017-03-03 21:28:38 +02:00
}
2017-03-03 01:06:34 +02:00
if (ps.poll != undefined) {
query.poll = ps.poll ? { $exists: true, $ne: null } : null;
2017-03-03 21:28:38 +02:00
}
2017-03-03 01:06:34 +02:00
2018-03-16 20:33:36 +02:00
// TODO
//if (bot != undefined) {
2018-03-29 08:48:47 +03:00
// query.isBot = bot;
2018-03-16 20:33:36 +02:00
//}
2017-03-03 21:28:38 +02:00
// Issue query
2018-04-07 20:30:37 +03:00
const notes = await Note
2017-03-03 21:28:38 +02:00
.find(query, {
limit: ps.limit,
2017-03-03 21:28:38 +02:00
sort: sort
});
2017-03-03 01:06:34 +02:00
2017-03-03 21:28:38 +02:00
// Serialize
res(await packMany(notes));
2017-03-03 21:28:38 +02:00
});