iceshrimp-legacy/src/server/api/endpoints/notes.ts

95 lines
2.3 KiB
TypeScript
Raw Normal View History

2017-03-03 00:06:34 +01:00
/**
* Module dependencies
*/
2018-04-24 11:13:06 +02:00
import $ from 'cafy'; import ID from '../../../cafy-id';
2018-04-07 19:30:37 +02:00
import Note, { pack } from '../../../models/note';
2017-03-03 00:06:34 +01:00
/**
2018-04-09 21:15:20 +02:00
* Get all notes
2017-03-03 00:06:34 +01:00
*/
2017-03-03 20:28:38 +01:00
module.exports = (params) => new Promise(async (res, rej) => {
// Get 'reply' parameter
2018-05-02 11:06:16 +02:00
const [reply, replyErr] = $.bool.optional().get(params.reply);
if (replyErr) return rej('invalid reply param');
2017-03-03 00:06:34 +01:00
2018-04-07 19:30:37 +02:00
// Get 'renote' parameter
2018-05-02 11:06:16 +02:00
const [renote, renoteErr] = $.bool.optional().get(params.renote);
2018-04-07 19:30:37 +02:00
if (renoteErr) return rej('invalid renote param');
// Get 'media' parameter
2018-05-02 11:06:16 +02:00
const [media, mediaErr] = $.bool.optional().get(params.media);
if (mediaErr) return rej('invalid media param');
// Get 'poll' parameter
2018-05-02 11:06:16 +02:00
const [poll, pollErr] = $.bool.optional().get(params.poll);
if (pollErr) return rej('invalid poll param');
2017-03-03 00:06:34 +01:00
2018-03-16 19:33:36 +01:00
// Get 'bot' parameter
2018-05-02 11:06:16 +02:00
//const [bot, botErr] = $.bool.optional().get(params.bot);
2018-03-16 19:33:36 +01:00
//if (botErr) return rej('invalid bot param');
2017-03-03 20:28:38 +01:00
// Get 'limit' parameter
2018-05-02 11:06:16 +02:00
const [limit = 10, limitErr] = $.num.optional().range(1, 100).get(params.limit);
2017-03-03 20:28:38 +01:00
if (limitErr) return rej('invalid limit param');
2017-03-03 00:06:34 +01:00
2018-03-29 07:48:47 +02:00
// Get 'sinceId' parameter
2018-05-02 11:06:16 +02:00
const [sinceId, sinceIdErr] = $.type(ID).optional().get(params.sinceId);
2018-03-29 07:48:47 +02:00
if (sinceIdErr) return rej('invalid sinceId param');
2017-03-03 00:06:34 +01:00
2018-03-29 07:48:47 +02:00
// Get 'untilId' parameter
2018-05-02 11:06:16 +02:00
const [untilId, untilIdErr] = $.type(ID).optional().get(params.untilId);
2018-03-29 07:48:47 +02:00
if (untilIdErr) return rej('invalid untilId param');
2017-03-03 00:06:34 +01:00
2018-03-29 07:48:47 +02:00
// Check if both of sinceId and untilId is specified
2017-12-20 18:20:02 +01:00
if (sinceId && untilId) {
2018-03-29 07:48:47 +02:00
return rej('cannot set sinceId and untilId');
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Construct query
const sort = {
_id: -1
};
const query = {} as any;
if (sinceId) {
sort._id = 1;
query._id = {
$gt: sinceId
};
2017-12-20 18:20:02 +01:00
} else if (untilId) {
2017-03-03 20:28:38 +01:00
query._id = {
2017-12-20 18:20:02 +01:00
$lt: untilId
2017-03-03 00:06:34 +01:00
};
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
if (reply != undefined) {
2018-03-29 07:48:47 +02:00
query.replyId = reply ? { $exists: true, $ne: null } : null;
}
2018-04-07 19:30:37 +02:00
if (renote != undefined) {
query.renoteId = renote ? { $exists: true, $ne: null } : null;
}
if (media != undefined) {
2018-04-09 21:15:20 +02:00
query.mediaIds = media ? { $exists: true, $ne: null } : [];
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
if (poll != undefined) {
query.poll = poll ? { $exists: true, $ne: null } : null;
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
2018-03-16 19:33:36 +01:00
// TODO
//if (bot != undefined) {
2018-03-29 07:48:47 +02:00
// query.isBot = bot;
2018-03-16 19:33:36 +01:00
//}
2017-03-03 20:28:38 +01:00
// Issue query
2018-04-07 19:30:37 +02:00
const notes = await Note
2017-03-03 20:28:38 +01:00
.find(query, {
limit: limit,
sort: sort
});
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Serialize
2018-04-09 21:15:20 +02:00
res(await Promise.all(notes.map(note => pack(note))));
2017-03-03 20:28:38 +01:00
});