Sharkey/src/api/endpoints/users/posts.ts

129 lines
3.1 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2016-12-29 00:49:51 +02:00
import Post from '../../models/post';
2018-02-02 03:31:17 +02:00
import User, { pack } from '../../models/user';
2016-12-29 00:49:51 +02:00
/**
* Get posts of a user
*
2017-03-01 10:37:01 +02:00
* @param {any} params
* @param {any} me
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
2017-03-03 21:28:38 +02:00
module.exports = (params, me) => new Promise(async (res, rej) => {
2016-12-29 00:49:51 +02:00
// Get 'user_id' parameter
2017-03-08 20:50:09 +02:00
const [userId, userIdErr] = $(params.user_id).optional.id().$;
2017-03-03 00:47:14 +02:00
if (userIdErr) return rej('invalid user_id param');
2017-01-05 14:58:02 +02:00
// Get 'username' parameter
2017-03-08 20:50:09 +02:00
const [username, usernameErr] = $(params.username).optional.string().$;
2017-03-03 00:47:14 +02:00
if (usernameErr) return rej('invalid username param');
2017-01-05 14:58:02 +02:00
2017-03-03 13:28:42 +02:00
if (userId === undefined && username === undefined) {
2017-01-05 14:58:02 +02:00
return rej('user_id or username is required');
2016-12-29 00:49:51 +02:00
}
2017-03-03 00:47:14 +02:00
// Get 'include_replies' parameter
2017-03-08 20:50:09 +02:00
const [includeReplies = true, includeRepliesErr] = $(params.include_replies).optional.boolean().$;
2017-03-03 00:47:14 +02:00
if (includeRepliesErr) return rej('invalid include_replies param');
2016-12-29 00:49:51 +02:00
// Get 'with_media' parameter
2017-03-08 20:50:09 +02:00
const [withMedia = false, withMediaErr] = $(params.with_media).optional.boolean().$;
2017-03-03 00:47:14 +02:00
if (withMediaErr) return rej('invalid with_media param');
2016-12-29 00:49:51 +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 00:47:14 +02:00
if (limitErr) return rej('invalid limit param');
2016-12-29 00:49:51 +02:00
2017-03-03 00:47:14 +02:00
// Get 'since_id' parameter
2017-03-08 20:50:09 +02:00
const [sinceId, sinceIdErr] = $(params.since_id).optional.id().$;
2017-03-03 00:47:14 +02:00
if (sinceIdErr) return rej('invalid since_id param');
2016-12-29 00:49:51 +02:00
2017-12-20 19:20:02 +02:00
// Get 'until_id' parameter
const [untilId, untilIdErr] = $(params.until_id).optional.id().$;
if (untilIdErr) return rej('invalid until_id param');
2016-12-29 00:49:51 +02:00
2017-11-14 01:21:19 +02:00
// Get 'since_date' parameter
const [sinceDate, sinceDateErr] = $(params.since_date).optional.number().$;
if (sinceDateErr) throw 'invalid since_date param';
2017-12-20 19:20:02 +02:00
// Get 'until_date' parameter
const [untilDate, untilDateErr] = $(params.until_date).optional.number().$;
if (untilDateErr) throw 'invalid until_date param';
2017-11-14 01:21:19 +02:00
2017-12-20 19:20:02 +02:00
// Check if only one of since_id, until_id, since_date, until_date specified
if ([sinceId, untilId, sinceDate, untilDate].filter(x => x != null).length > 1) {
throw 'only one of since_id, until_id, since_date, until_date can be specified';
2016-12-29 00:49:51 +02:00
}
2017-03-03 13:28:42 +02:00
const q = userId !== undefined
2017-03-03 00:47:14 +02:00
? { _id: userId }
2017-02-22 06:08:33 +02:00
: { username_lower: username.toLowerCase() } ;
2016-12-29 00:49:51 +02:00
// Lookup user
2017-02-22 06:08:33 +02:00
const user = await User.findOne(q, {
fields: {
_id: true
}
});
2016-12-29 00:49:51 +02:00
if (user === null) {
return rej('user not found');
}
2017-11-14 01:21:19 +02:00
//#region Construct query
2016-12-29 00:49:51 +02:00
const sort = {
_id: -1
};
2017-11-14 01:21:19 +02:00
2016-12-29 00:49:51 +02:00
const query = {
user_id: user._id
2017-03-03 00:47:14 +02:00
} as any;
2017-11-14 01:21:19 +02:00
2017-03-03 00:47:14 +02:00
if (sinceId) {
2016-12-29 00:49:51 +02:00
sort._id = 1;
query._id = {
2017-03-03 00:47:14 +02:00
$gt: sinceId
2016-12-29 00:49:51 +02:00
};
2017-12-20 19:20:02 +02:00
} else if (untilId) {
2016-12-29 00:49:51 +02:00
query._id = {
2017-12-20 19:20:02 +02:00
$lt: untilId
2016-12-29 00:49:51 +02:00
};
2017-11-14 01:21:19 +02:00
} else if (sinceDate) {
sort._id = 1;
query.created_at = {
$gt: new Date(sinceDate)
};
2017-12-20 19:20:02 +02:00
} else if (untilDate) {
2017-11-14 01:21:19 +02:00
query.created_at = {
2017-12-20 19:20:02 +02:00
$lt: new Date(untilDate)
2017-11-14 01:21:19 +02:00
};
2016-12-29 00:49:51 +02:00
}
2017-03-03 00:47:14 +02:00
if (!includeReplies) {
2017-11-01 03:22:40 +02:00
query.reply_id = null;
2016-12-29 00:49:51 +02:00
}
if (withMedia) {
query.media_ids = {
$exists: true,
$ne: null
};
}
2017-11-14 01:21:19 +02:00
//#endregion
2016-12-29 00:49:51 +02:00
// Issue query
const posts = await Post
2017-01-17 04:11:22 +02:00
.find(query, {
2016-12-29 00:49:51 +02:00
limit: limit,
sort: sort
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
res(await Promise.all(posts.map(async (post) =>
2018-02-02 01:21:30 +02:00
await pack(post, me)
2016-12-29 00:49:51 +02:00
)));
});