summaryrefslogtreecommitdiff
path: root/src/api/endpoints/posts/likes/create.ts
blob: 3a7650deadf8cf050e8e1ba4649d18990695cb27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
 * Module dependencies
 */
import $ from 'cafy';
import Like from '../../../models/like';
import Post from '../../../models/post';
import User from '../../../models/user';
import notify from '../../../common/notify';

/**
 * Like a post
 *
 * @param {any} params
 * @param {any} user
 * @return {Promise<any>}
 */
module.exports = (params, user) => new Promise(async (res, rej) => {
	// Get 'post_id' parameter
	const [postId, postIdErr] = $(params.post_id).id().$;
	if (postIdErr) return rej('invalid post_id param');

	// Get likee
	const post = await Post.findOne({
		_id: postId
	});

	if (post === null) {
		return rej('post not found');
	}

	// Myself
	if (post.user_id.equals(user._id)) {
		return rej('-need-translate-');
	}

	// if already liked
	const exist = await Like.findOne({
		post_id: post._id,
		user_id: user._id,
		deleted_at: { $exists: false }
	});

	if (exist !== null) {
		return rej('already liked');
	}

	// Create like
	await Like.insert({
		created_at: new Date(),
		post_id: post._id,
		user_id: user._id
	});

	// Send response
	res();

	// Increment likes count
	Post.update({ _id: post._id }, {
		$inc: {
			likes_count: 1
		}
	});

	// Increment user likes count
	User.update({ _id: user._id }, {
		$inc: {
			likes_count: 1
		}
	});

	// Increment user liked count
	User.update({ _id: post.user_id }, {
		$inc: {
			liked_count: 1
		}
	});

	// Notify
	notify(post.user_id, user._id, 'like', {
		post_id: post._id
	});
});