Create endpoint for user-registration
-
Review changes -
-
Download -
Patches
-
Plain diff
What does this MR do?
- Installing libraries and setting up the npm environment
Libraries:
- mongodb
- express
- mongoose
- nodemon
- bcrypt
- jsonwebtoken
- cors
- multer
- mongodb-memory-server
-
Connect with 'mongodb-memory-server' initially (Will change it to MongoDB Atlas later)
-
Create endpoints for POST requests - /register, /login, /updateUser, /user/:username
-
Create User.model.js which contains the properties of the schema using mongoose
-
Create Controllers for /register, /login, /updateUser, /user/:username
-
Validate authentication
Starting Project
Start server by npm start
in the daily-thought-user-service/server directory
Testing endpoints
a. Register Route [/register]
Valid registration -
Username Exists -
Email Exists -
b. Login Route [/login]
You have to register first, and then log in. You can only log in with your username and password.
Valid Login -
User Not Found (Invalid User) -
Invalid Credentials (Password Does not Match)
c. GetUser Route [/user/:username]
You have to register first, and then can use this route. It is a GET request.
Valid User
Invalid User
d. Update User [/updateuser]
This is a PUT Request. After you register and login, you have to get the 'token' from the login route. You have to paste this token in the Auth>Bearer of the /updateuser.
Then you click send, and you will get the following response:
If you go to the GetUser [/user/:username] route again, you will see the email and profile got updated.
Relevant issues
Please ensure the 'Mongoose' is of version "mongoose": "^6.8.0",
, as some methods do not work in the newer version.
Merge request reports
- version 2157d4039e
- version 208370fa50
- version 191d11c820
- version 18542b9e3f
- version 174f4f480c
- version 16b551af73
- version 15980a3dbe
- version 1485fdafbe
- version 139af8a485
- version 12670fba3b
- version 11089cc203
- version 104997f796
- version 984f57f79
- version 8deb3b55c
- version 756077672
- version 65901b5ae
- version 5d6aacd1b
- version 472d50110
- version 3e30d1ee1
- version 2390c697a
- version 17c220da7
- main (base)
- latest version320aa7af27 commits,
- version 2157d4039e26 commits,
- version 208370fa5025 commits,
- version 191d11c82020 commits,
- version 18542b9e3f19 commits,
- version 174f4f480c17 commits,
- version 16b551af7316 commits,
- version 15980a3dbe15 commits,
- version 1485fdafbe14 commits,
- version 139af8a48513 commits,
- version 12670fba3b12 commits,
- version 11089cc20311 commits,
- version 104997f79610 commits,
- version 984f57f799 commits,
- version 8deb3b55c8 commits,
- version 7560776727 commits,
- version 65901b5ae6 commits,
- version 5d6aacd1b5 commits,
- version 472d501104 commits,
- version 3e30d1ee13 commits,
- version 2390c697a2 commits,
- version 17c220da71 commit,
- Side-by-side
- Inline