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

105 lines
2.5 KiB
TypeScript
Raw Normal View History

2017-03-03 01:06:34 +02:00
/**
* Module dependencies
*/
2018-07-07 13:19:00 +03:00
import $ from 'cafy'; import ID from '../../../misc/cafy-id';
2018-04-07 20:30:37 +03:00
import Note, { pack } from '../../../models/note';
2017-03-03 01:06:34 +02:00
/**
2018-04-09 22:15:20 +03:00
* Get all notes
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) => {
// Get 'local' parameter
2018-07-05 17:36:07 +03:00
const [local, localErr] = $.bool.optional.get(params.local);
if (localErr) return rej('invalid local param');
// Get 'reply' parameter
2018-07-05 17:36:07 +03:00
const [reply, replyErr] = $.bool.optional.get(params.reply);
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
2018-07-05 17:36:07 +03:00
const [renote, renoteErr] = $.bool.optional.get(params.renote);
2018-04-07 20:30:37 +03:00
if (renoteErr) return rej('invalid renote param');
// Get 'media' parameter
2018-07-05 17:36:07 +03:00
const [media, mediaErr] = $.bool.optional.get(params.media);
if (mediaErr) return rej('invalid media param');
// Get 'poll' parameter
2018-07-05 17:36:07 +03:00
const [poll, pollErr] = $.bool.optional.get(params.poll);
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
2018-07-05 17:36:07 +03:00
//const [bot, botErr] = $.bool.optional.get(params.bot);
2018-03-16 20:33:36 +02:00
//if (botErr) return rej('invalid bot param');
2017-03-03 21:28:38 +02:00
// Get 'limit' parameter
2018-07-05 17:36:07 +03:00
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
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
2018-07-05 17:36:07 +03:00
const [sinceId, sinceIdErr] = $.type(ID).optional.get(params.sinceId);
2018-03-29 08:48:47 +03:00
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
2018-07-05 17:36:07 +03:00
const [untilId, untilIdErr] = $.type(ID).optional.get(params.untilId);
2018-03-29 08:48:47 +03:00
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
};
2018-05-28 19:50:01 +03:00
const query = {
visibility: 'public'
} as any;
2017-03-03 21:28:38 +02:00
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 (local) {
2018-05-23 09:47:51 +03:00
query['_user.host'] = null;
}
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-04-09 22:15:20 +03:00
query.mediaIds = media ? { $exists: true, $ne: 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-09 22:15:20 +03:00
res(await Promise.all(notes.map(note => pack(note))));
2017-03-03 21:28:38 +02:00
});