-
Notifications
You must be signed in to change notification settings - Fork 1.9k
code review start #142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
code review start #142
Conversation
| return next({ status: 401, message: 'Token required'}) | ||
| } | ||
| jwt.verify(token, JWT_SECRET, (err, decode)=>{ | ||
| if(err){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
doesnt match above white space
| */ | ||
| const { username } = req.body | ||
| try{ | ||
| const dbUsername = await User.findBy({ username }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dbUsername actually is a collection == dbUsers
returns an array
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
generalize
| } | ||
| */ | ||
| let { role_name } = req.body | ||
| // let role_name = role_name.trim() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
take out the comments as normal --- delete it!
| */ | ||
| let { role_name } = req.body | ||
| // let role_name = role_name.trim() | ||
| if( !role_name || role_name.trim() === undefined ){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
after || will never be called
| next() | ||
| } else { | ||
| if ( role_name.trim() === 'admin'){ | ||
| return next({ status: 422, message: 'Role name can not be admin'}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return is not necessary if you have "else/else if" right after...
change one or the other
| @@ -1,8 +1,12 @@ | |||
| const router = require("express").Router(); | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
be consistent with semicolons !!
| const tokenBuilder = require('./helpers') | ||
| const { checkUsernameExists, validateRoleName } = require('./auth-middleware'); | ||
| const { JWT_SECRET } = require("../secrets"); // use this secret! | ||
| const { BCRYPT_ROUNDS } = require("../secrets"); // use this secret! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will the comment be a lifesaver here??
if yes, leave in
if not, take out
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no misleading comments
| const hash = bcrypt.hashSync(password, BCRYPT_ROUNDS) | ||
| const role = req.role_name | ||
| try { | ||
| const newUser = await User.add({ username, password: hash, role_name: role }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep lines under 100 at least ((maybe 80 if possible))
| */ | ||
|
|
||
| try { | ||
| let user = req.user |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could have destructured
| return db('users as u') | ||
| .leftJoin('roles as r', 'r.role_id', 'u.role_id') | ||
| .select('u.*', 'r.*') | ||
| .where(filter).first() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is only finding the first in the array
| "knex": "^0.95.14", | ||
| "sqlite3": "^5.0.2" | ||
| "jsonwebtoken": "^8.5.1", | ||
| "knex": "^1.0.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
adding risk by doing this -- might be increasing the possibility of errs
only if you need to use the new version
No description provided.