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

105 lines
2.5 KiB
TypeScript
Raw Normal View History

2017-03-03 00:06:34 +01:00
/**
* Module dependencies
*/
2018-07-07 12:19:00 +02:00
import $ from 'cafy'; import ID from '../../../misc/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
*/
2018-07-05 19:58:29 +02:00
export default (params: any) => new Promise(async (res, rej) => {
// Get 'local' parameter
2018-07-05 16:36:07 +02:00
const [local, localErr] = $.bool.optional.get(params.local);
if (localErr) return rej('invalid local param');
// Get 'reply' parameter
2018-07-05 16:36:07 +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-07-05 16:36:07 +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');
2018-09-05 12:32:46 +02:00
// Get 'files' parameter
const [files, filesErr] = $.bool.optional.get(params.files);
if (filesErr) return rej('invalid files param');
// Get 'poll' parameter
2018-07-05 16:36:07 +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-07-05 16:36:07 +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-07-05 16:36:07 +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-07-05 16:36:07 +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-07-05 16:36:07 +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
};
2018-05-28 18:50:01 +02:00
const query = {
visibility: 'public'
} as any;
2017-03-03 20:28:38 +01:00
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 (local) {
2018-05-23 08:47:51 +02:00
query['_user.host'] = null;
}
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;
}
2018-09-05 12:32:46 +02:00
if (files != undefined) {
query.fileIds = files ? { $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
});