User routes

This commit is contained in:
Andrew Trieu
2023-07-10 11:15:29 +03:00
committed by Andrew Trieu
parent 8b276dbadb
commit 6c35f7d006
4 changed files with 130 additions and 0 deletions

101
server/controllers/users.js Normal file
View File

@@ -0,0 +1,101 @@
import User from "../models/User";
/**
* Read - GET
*/
export const getUser = async (req, res) => {
try {
const { id } = req.params;
const user = await User.findById(id);
res.status(200).json(user);
} catch (error) {
res.status(404).json({ error: error.message });
}
};
export const getFriends = async (req, res) => {
try {
const { id } = req.params;
const user = await User.findById(id);
const friends = await Promise.all(
user.friends.map((id) => User.findById(id))
);
const friendList = friends.map(
({
_id,
firstName,
lastName,
profilePicturePath,
location,
description,
admin,
}) => {
return {
_id,
firstName,
lastName,
profilePicturePath,
location,
description,
admin,
};
}
);
res.status(200).json(friendList);
} catch (error) {
res.status(404).json({ error: error.message });
}
};
/**
* Update - PATCH
*/
export const patchFriend = async (req, res) => {
try {
const { id, friendId } = req.params;
const user = await User.findById(id);
const friend = await User.findById(friendId);
if (user.friends.includes(friendId)) {
user.friends = user.friends.filter((id) => id !== friendId);
friend.friends = friend.friends.filter((id) => id !== id);
} else {
user.friends.push(friendId);
friend.friends.push(id);
}
await user.save();
await friend.save();
const friends = await Promise.all(
user.friends.map((id) => User.findById(id))
);
const friendList = friends.map(
({
_id,
firstName,
lastName,
profilePicturePath,
location,
description,
admin,
}) => {
return {
_id,
firstName,
lastName,
profilePicturePath,
location,
description,
admin,
};
}
);
res.status(200).json(friendList);
} catch (error) {
res.status(404).json({ error: error.message });
}
};