Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
Daily Thought App
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COM3014-Coursework
Daily Thought App
Commits
b225cdb5
Commit
b225cdb5
authored
1 year ago
by
Matt Kirby
Browse files
Options
Downloads
Plain Diff
Merge branch 'main' into FE-search-and-friends
parents
9d1767ee
c4b2bc10
No related branches found
Branches containing commit
No related tags found
1 merge request
!18
Fe search and friends (sorry in advance)
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
backend-services/user-service/controllers/appController.js
+8
-6
8 additions, 6 deletions
backend-services/user-service/controllers/appController.js
backend-services/user-service/router/route.js
+1
-1
1 addition, 1 deletion
backend-services/user-service/router/route.js
with
9 additions
and
7 deletions
backend-services/user-service/controllers/appController.js
+
8
−
6
View file @
b225cdb5
...
...
@@ -206,7 +206,7 @@ export async function updateUser(req,res){
}
/**
*
GE
T /userlist
*
POS
T /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
{
q
uery
}
=
req
.
bod
y
;
const
{
searchQ
uery
}
=
req
.
quer
y
;
if
(
query
===
undefined
||
query
.
length
===
0
){
console
.
log
(
searchQuery
)
if
(
searchQuery
===
undefined
||
searchQuery
.
length
===
0
){
throw
new
Error
(
"
Please provide a valid query!
"
)
}
const
usersWithMatching
Id
=
await
UserModel
.
find
({
"
username
"
:
{
"
$regex
"
:
`^
${
q
uery
}
`
}},
{
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
({
usersBy
Id
:
usersWithMatching
Id
,
usersByName
:
usersWithMatchingName
});
const
usersWithMatching
Username
=
await
UserModel
.
find
({
"
username
"
:
{
"
$regex
"
:
`^
${
searchQ
uery
}
`
}},
{
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
({
usersBy
Username
:
usersWithMatching
Username
,
usersByName
:
usersWithMatchingName
});
}
catch
(
error
){
return
res
.
status
(
401
).
send
({
error
:
error
.
message
});
}
...
...
This diff is collapsed.
Click to expand it.
backend-services/user-service/router/route.js
+
1
−
1
View file @
b225cdb5
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment