Skip to content
Snippets Groups Projects
Commit b225cdb5 authored by Matt Kirby's avatar Matt Kirby
Browse files

Merge branch 'main' into FE-search-and-friends

parents 9d1767ee c4b2bc10
No related branches found
No related tags found
1 merge request!18Fe search and friends (sorry in advance)
......@@ -206,7 +206,7 @@ export async function updateUser(req,res){
}
/**
* GET /userlist
* POST /userlist
* This DOES NOT return emails and passwords
* @param {*} req
* @param {*} res
......@@ -235,15 +235,17 @@ export const GetUserList = async (req,res) => {
*/
export const Search = async (req,res) => {
try {
const {query} = req.body;
const {searchQuery} = req.query;
if(query === undefined || query.length === 0){
console.log(searchQuery)
if(searchQuery === undefined || searchQuery.length === 0){
throw new Error("Please provide a valid query!")
}
const usersWithMatchingId = await UserModel.find({"username": {"$regex": `^${query}`}}, {password: 0, email: 0})
const usersWithMatchingName = await UserModel.find({$or: [{"firstName": {"$regex": `^${query}`}}, {"lastName": {"$regex": `^${query}`}}]}, {password: 0, email: 0})
return res.status(201).send({ usersById: usersWithMatchingId, usersByName: usersWithMatchingName});
const usersWithMatchingUsername = await UserModel.find({"username": {"$regex": `^${searchQuery}`}}, {password: 0, email: 0})
const usersWithMatchingName = await UserModel.find({$or: [{"firstName": {"$regex": `^${searchQuery}`,"$options": 'i'}}, {"lastName": {"$regex": `^${searchQuery}`,"$options": 'i'}}]}, {password: 0, email: 0})
return res.status(201).send({ usersByUsername: usersWithMatchingUsername, usersByName: usersWithMatchingName});
} catch(error){
return res.status(401).send({ error: error.message });
}
......
......@@ -8,10 +8,10 @@ const router = Router();
/** POST Methods */
router.route('/register').post(controller.register); // Register
router.route('/login').post(controller.verifyUser, controller.login); // Login
router.route('/userlist').post(controller.GetUserList) // Get user list
/** GET Methods */
router.route('/user/:username').get(controller.getUser); // GetUser
router.route('/userlist').get(controller.GetUserList) // Get user list
router.route("/search").get(controller.Search) // Search
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment