rudeshark.net/src/server/api/endpoints/users/notes.ts

127 lines
3.2 KiB
TypeScript
Raw Normal View History

2018-07-07 12:19:00 +02:00
import $ from 'cafy'; import ID from '../../../../misc/cafy-id';
2018-03-27 09:51:12 +02:00
import getHostLower from '../../common/get-host-lower';
2018-04-07 19:30:37 +02:00
import Note, { pack } from '../../../../models/note';
2018-06-18 02:54:53 +02:00
import User, { ILocalUser } from '../../../../models/user';
2016-12-28 23:49:51 +01:00
/**
2018-04-07 19:30:37 +02:00
* Get notes of a user
2016-12-28 23:49:51 +01:00
*/
2018-07-05 19:58:29 +02:00
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
2018-03-29 07:48:47 +02:00
// Get 'userId' parameter
2018-07-05 16:36:07 +02:00
const [userId, userIdErr] = $.type(ID).optional.get(params.userId);
2018-03-29 07:48:47 +02:00
if (userIdErr) return rej('invalid userId param');
2017-01-05 13:58:02 +01:00
// Get 'username' parameter
2018-07-05 16:36:07 +02:00
const [username, usernameErr] = $.str.optional.get(params.username);
2017-03-02 23:47:14 +01:00
if (usernameErr) return rej('invalid username param');
2017-01-05 13:58:02 +01:00
2017-03-03 12:28:42 +01:00
if (userId === undefined && username === undefined) {
2018-08-16 16:33:11 +02:00
return rej('userId or username is required');
2018-03-27 09:51:12 +02:00
}
// Get 'host' parameter
2018-07-05 16:36:07 +02:00
const [host, hostErr] = $.str.optional.get(params.host);
2018-03-27 09:51:12 +02:00
if (hostErr) return rej('invalid host param');
2018-03-29 07:48:47 +02:00
// Get 'includeReplies' parameter
2018-07-05 16:36:07 +02:00
const [includeReplies = true, includeRepliesErr] = $.bool.optional.get(params.includeReplies);
2018-03-29 07:48:47 +02:00
if (includeRepliesErr) return rej('invalid includeReplies param');
2016-12-28 23:49:51 +01:00
2018-09-05 12:32:46 +02:00
// Get 'withFiles' parameter
const [withFiles = false, withFilesErr] = $.bool.optional.get(params.withFiles);
if (withFilesErr) return rej('invalid withFiles param');
2016-12-28 23:49:51 +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-02 23:47:14 +01:00
if (limitErr) return rej('invalid limit param');
2016-12-28 23:49:51 +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');
2016-12-28 23:49:51 +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');
2016-12-28 23:49:51 +01:00
2018-03-29 07:48:47 +02:00
// Get 'sinceDate' parameter
2018-07-05 16:36:07 +02:00
const [sinceDate, sinceDateErr] = $.num.optional.get(params.sinceDate);
2018-03-29 07:48:47 +02:00
if (sinceDateErr) throw 'invalid sinceDate param';
2017-11-14 00:21:19 +01:00
2018-03-29 07:48:47 +02:00
// Get 'untilDate' parameter
2018-07-05 16:36:07 +02:00
const [untilDate, untilDateErr] = $.num.optional.get(params.untilDate);
2018-03-29 07:48:47 +02:00
if (untilDateErr) throw 'invalid untilDate param';
2017-11-14 00:21:19 +01:00
2018-03-29 07:48:47 +02:00
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
2017-12-20 18:20:02 +01:00
if ([sinceId, untilId, sinceDate, untilDate].filter(x => x != null).length > 1) {
2018-03-29 07:48:47 +02:00
throw 'only one of sinceId, untilId, sinceDate, untilDate can be specified';
2016-12-28 23:49:51 +01:00
}
2017-03-03 12:28:42 +01:00
const q = userId !== undefined
2017-03-02 23:47:14 +01:00
? { _id: userId }
: { usernameLower: username.toLowerCase(), host: getHostLower(host) } ;
2017-02-22 05:08:33 +01:00
2016-12-28 23:49:51 +01:00
// Lookup user
2017-02-22 05:08:33 +01:00
const user = await User.findOne(q, {
fields: {
_id: true
}
});
2016-12-28 23:49:51 +01:00
if (user === null) {
return rej('user not found');
}
2017-11-14 00:21:19 +01:00
//#region Construct query
2016-12-28 23:49:51 +01:00
const sort = {
_id: -1
};
2017-11-14 00:21:19 +01:00
2016-12-28 23:49:51 +01:00
const query = {
2018-03-29 07:48:47 +02:00
userId: user._id
2017-03-02 23:47:14 +01:00
} as any;
2017-11-14 00:21:19 +01:00
2017-03-02 23:47:14 +01:00
if (sinceId) {
2016-12-28 23:49:51 +01:00
sort._id = 1;
query._id = {
2017-03-02 23:47:14 +01:00
$gt: sinceId
2016-12-28 23:49:51 +01:00
};
2017-12-20 18:20:02 +01:00
} else if (untilId) {
2016-12-28 23:49:51 +01:00
query._id = {
2017-12-20 18:20:02 +01:00
$lt: untilId
2016-12-28 23:49:51 +01:00
};
2017-11-14 00:21:19 +01:00
} else if (sinceDate) {
sort._id = 1;
2018-03-29 07:48:47 +02:00
query.createdAt = {
2017-11-14 00:21:19 +01:00
$gt: new Date(sinceDate)
};
2017-12-20 18:20:02 +01:00
} else if (untilDate) {
2018-03-29 07:48:47 +02:00
query.createdAt = {
2017-12-20 18:20:02 +01:00
$lt: new Date(untilDate)
2017-11-14 00:21:19 +01:00
};
2016-12-28 23:49:51 +01:00
}
2017-03-02 23:47:14 +01:00
if (!includeReplies) {
2018-03-29 07:48:47 +02:00
query.replyId = null;
2016-12-28 23:49:51 +01:00
}
2018-09-05 12:32:46 +02:00
if (withFiles) {
query.fileIds = {
2016-12-28 23:49:51 +01:00
$exists: true,
2018-04-11 10:42:56 +02:00
$ne: []
2016-12-28 23:49:51 +01:00
};
}
2017-11-14 00:21:19 +01:00
//#endregion
2016-12-28 23:49:51 +01:00
// Issue query
2018-04-07 19:30:37 +02:00
const notes = await Note
2017-01-17 03:11:22 +01:00
.find(query, {
2016-12-28 23:49:51 +01:00
limit: limit,
sort: sort
2017-01-17 03:11:22 +01:00
});
2016-12-28 23:49:51 +01:00
// Serialize
2018-04-07 19:30:37 +02:00
res(await Promise.all(notes.map(async (note) =>
await pack(note, me)
2016-12-28 23:49:51 +01:00
)));
});