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

98 lines
2.3 KiB
TypeScript
Raw Normal View History

2017-03-03 01:06:34 +02:00
/**
* Module dependencies
*/
2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-04-07 20:30:37 +03:00
import Note, { pack } from '../../../models/note';
2017-03-03 01:06:34 +02:00
/**
2018-04-07 20:30:37 +03:00
* Lists all notes
2017-03-03 01:06:34 +02:00
*
* @param {any} params
* @return {Promise<any>}
*/
2017-03-03 21:28:38 +02:00
module.exports = (params) => new Promise(async (res, rej) => {
// Get 'reply' parameter
const [reply, replyErr] = $(params.reply).optional.boolean().$;
if (replyErr) return rej('invalid reply param');
2017-03-03 01:06:34 +02:00
2018-04-07 20:30:37 +03:00
// Get 'renote' parameter
const [renote, renoteErr] = $(params.renote).optional.boolean().$;
if (renoteErr) return rej('invalid renote param');
// Get 'media' parameter
const [media, mediaErr] = $(params.media).optional.boolean().$;
if (mediaErr) return rej('invalid media param');
// Get 'poll' parameter
const [poll, pollErr] = $(params.poll).optional.boolean().$;
if (pollErr) return rej('invalid poll param');
2017-03-03 01:06:34 +02:00
2018-03-16 20:33:36 +02:00
// Get 'bot' parameter
//const [bot, botErr] = $(params.bot).optional.boolean().$;
//if (botErr) return rej('invalid bot param');
2017-03-03 21:28:38 +02:00
// Get 'limit' parameter
2017-03-08 20:50:09 +02:00
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
2017-03-03 21:28:38 +02:00
if (limitErr) return rej('invalid limit param');
2017-03-03 01:06:34 +02:00
2018-03-29 08:48:47 +03:00
// Get 'sinceId' parameter
const [sinceId, sinceIdErr] = $(params.sinceId).optional.id().$;
if (sinceIdErr) return rej('invalid sinceId param');
2017-03-03 01:06:34 +02:00
2018-03-29 08:48:47 +03:00
// Get 'untilId' parameter
const [untilId, untilIdErr] = $(params.untilId).optional.id().$;
if (untilIdErr) return rej('invalid untilId param');
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
2017-12-20 19:20:02 +02:00
if (sinceId && 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
};
const query = {} as any;
if (sinceId) {
sort._id = 1;
query._id = {
$gt: sinceId
};
2017-12-20 19:20:02 +02:00
} else if (untilId) {
2017-03-03 21:28:38 +02:00
query._id = {
2017-12-20 19:20:02 +02:00
$lt: 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 (reply != undefined) {
2018-03-29 08:48:47 +03:00
query.replyId = reply ? { $exists: true, $ne: null } : null;
}
2018-04-07 20:30:37 +03:00
if (renote != undefined) {
query.renoteId = renote ? { $exists: true, $ne: null } : null;
}
if (media != undefined) {
2018-03-29 08:48:47 +03:00
query.mediaIds = media ? { $exists: true, $ne: null } : null;
2017-03-03 21:28:38 +02:00
}
2017-03-03 01:06:34 +02:00
if (poll != undefined) {
query.poll = 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: limit,
sort: sort
});
2017-03-03 01:06:34 +02:00
2017-03-03 21:28:38 +02:00
// Serialize
2018-04-07 20:30:37 +03:00
res(await Promise.all(notes.map(async note => await pack(note))));
2017-03-03 21:28:38 +02:00
});