2016-12-28 23:49:51 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-02 23:47:14 +01:00
|
|
|
import it from '../../it';
|
2016-12-28 23:49:51 +01:00
|
|
|
import Post from '../../models/post';
|
|
|
|
import User from '../../models/user';
|
|
|
|
import serialize from '../../serializers/post';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get posts of a user
|
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} me
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
|
|
|
module.exports = (params, me) =>
|
|
|
|
new Promise(async (res, rej) =>
|
|
|
|
{
|
|
|
|
// Get 'user_id' parameter
|
2017-03-02 23:47:14 +01:00
|
|
|
const [userId, userIdErr] = it(params.user_id, 'id');
|
|
|
|
if (userIdErr) return rej('invalid user_id param');
|
2017-01-05 13:58:02 +01:00
|
|
|
|
|
|
|
// Get 'username' parameter
|
2017-03-02 23:47:14 +01:00
|
|
|
const [username, usernameErr] = it(params.username, 'string');
|
|
|
|
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) {
|
2017-01-05 13:58:02 +01:00
|
|
|
return rej('user_id or username is required');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2017-03-02 23:47:14 +01:00
|
|
|
// Get 'include_replies' parameter
|
|
|
|
const [includeReplies, includeRepliesErr] = it(params.include_replies).expect.boolean().default(true).qed();
|
|
|
|
if (includeRepliesErr) return rej('invalid include_replies param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'with_media' parameter
|
2017-03-02 23:47:14 +01:00
|
|
|
const [withMedia, withMediaErr] = it(params.with_media).expect.boolean().default(false).qed();
|
|
|
|
if (withMediaErr) return rej('invalid with_media param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2017-03-02 23:47:14 +01:00
|
|
|
const [limit, limitErr] = it(params.limit).expect.number().range(1, 100).default(10).qed();
|
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-02 23:47:14 +01:00
|
|
|
// Get 'since_id' parameter
|
|
|
|
const [sinceId, sinceIdErr] = it(params.since_id).expect.id().qed();
|
|
|
|
if (sinceIdErr) return rej('invalid since_id param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-02 23:47:14 +01:00
|
|
|
// Get 'max_id' parameter
|
|
|
|
const [maxId, maxIdErr] = it(params.max_id).expect.id().qed();
|
|
|
|
if (maxIdErr) return rej('invalid max_id param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Check if both of since_id and max_id is specified
|
2017-03-03 12:11:31 +01:00
|
|
|
if (sinceId && maxId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
return rej('cannot set since_id and max_id');
|
|
|
|
}
|
|
|
|
|
2017-03-03 12:28:42 +01:00
|
|
|
const q = userId !== undefined
|
2017-03-02 23:47:14 +01:00
|
|
|
? { _id: userId }
|
2017-02-22 05:08:33 +01:00
|
|
|
: { username_lower: username.toLowerCase() } ;
|
|
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Construct query
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
const query = {
|
|
|
|
user_id: user._id
|
2017-03-02 23:47:14 +01:00
|
|
|
} as any;
|
|
|
|
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-03-02 23:47:14 +01:00
|
|
|
} else if (maxId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
query._id = {
|
2017-03-02 23:47:14 +01:00
|
|
|
$lt: maxId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-03-02 23:47:14 +01:00
|
|
|
if (!includeReplies) {
|
2016-12-28 23:49:51 +01:00
|
|
|
query.reply_to_id = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (withMedia) {
|
|
|
|
query.media_ids = {
|
|
|
|
$exists: true,
|
|
|
|
$ne: null
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Issue query
|
|
|
|
const posts = await Post
|
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
|
|
|
|
res(await Promise.all(posts.map(async (post) =>
|
|
|
|
await serialize(post, me)
|
|
|
|
)));
|
|
|
|
});
|