summaryrefslogtreecommitdiff
path: root/src/server/api/common/get-friends.ts
blob: 50ba71ea9665e5e8473b9a63f895d13e624a178f (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
import * as mongodb from 'mongodb';
import Following from '../../../models/following';

export const getFriendIds = async (me: mongodb.ObjectID, includeMe = true) => {
	// Fetch relation to other users who the I follows
	// SELECT followee
	const followings = await Following
		.find({
			followerId: me
		}, {
			fields: {
				followeeId: true
			}
		});

	// ID list of other users who the I follows
	const myfollowingIds = followings.map(following => following.followeeId);

	if (includeMe) {
		myfollowingIds.push(me);
	}

	return myfollowingIds;
};

export const getFriends = async (me: mongodb.ObjectID, includeMe = true) => {
	// Fetch relation to other users who the I follows
	const followings = await Following
		.find({
			followerId: me
		});

	// ID list of other users who the I follows
	const myfollowings = followings.map(following => ({
		id: following.followeeId,
		stalk: following.stalk
	}));

	if (includeMe) {
		myfollowings.push({
			id: me,
			stalk: true
		});
	}

	return myfollowings;
};