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

110 lines
2.5 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
2017-03-05 05:00:39 +02:00
import it from 'cafy';
2016-12-29 00:49:51 +02:00
import Post from '../../models/post';
import User from '../../models/user';
import serialize from '../../serializers/post';
/**
* 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-03 00:47:14 +02:00
const [userId, userIdErr] = it(params.user_id, 'id');
if (userIdErr) return rej('invalid user_id param');
2017-01-05 14:58:02 +02:00
// Get 'username' parameter
2017-03-03 00:47:14 +02:00
const [username, usernameErr] = it(params.username, 'string');
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-05 05:00:39 +02:00
const [includeReplies = true, includeRepliesErr] = it(params.include_replies).expect.boolean().get();
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-05 05:00:39 +02:00
const [withMedia = false, withMediaErr] = it(params.with_media).expect.boolean().get();
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-05 05:00:39 +02:00
const [limit = 10, limitErr] = it(params.limit).expect.number().range(1, 100).get();
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-05 05:00:39 +02:00
const [sinceId, sinceIdErr] = it(params.since_id).expect.id().get();
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-03-03 00:47:14 +02:00
// Get 'max_id' parameter
2017-03-05 05:00:39 +02:00
const [maxId, maxIdErr] = it(params.max_id).expect.id().get();
2017-03-03 00:47:14 +02:00
if (maxIdErr) return rej('invalid max_id param');
2016-12-29 00:49:51 +02:00
// Check if both of since_id and max_id is specified
2017-03-03 13:11:31 +02:00
if (sinceId && maxId) {
2016-12-29 00:49:51 +02:00
return rej('cannot set since_id and max_id');
}
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');
}
// Construct query
const sort = {
_id: -1
};
const query = {
user_id: user._id
2017-03-03 00:47:14 +02:00
} as any;
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-03-03 00:47:14 +02:00
} else if (maxId) {
2016-12-29 00:49:51 +02:00
query._id = {
2017-03-03 00:47:14 +02:00
$lt: maxId
2016-12-29 00:49:51 +02:00
};
}
2017-03-03 00:47:14 +02:00
if (!includeReplies) {
2016-12-29 00:49:51 +02:00
query.reply_to_id = null;
}
if (withMedia) {
query.media_ids = {
$exists: true,
$ne: null
};
}
// 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) =>
await serialize(post, me)
)));
});