Skip to content
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

#161120050 Generate Valid Auth Token for Users upon Signup #60

Merged
merged 1 commit into from
Oct 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
33 changes: 12 additions & 21 deletions server/controllers/authController.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import bcrpyt from 'bcryptjs';
import pool from '../db/config';

class AuthController {
static async signup(req, res) {
static async signup(req, res, next) {
const {
name,
email,
Expand All @@ -22,40 +22,31 @@ class AuthController {
}
// Hash password and save user to database
const hashedPassword = await bcrpyt.hash(password, 10);
const dbQuery = 'INSERT INTO users(name, email, password, is_admin) VALUES($1, $2, $3, $4) RETURNING id, name, email';
const user = (await pool.query(dbQuery, [name, email, hashedPassword, isAdmin])).rows[0];
return res.status(201).json({
status: 'success',
message: 'user created successfully',
user,
});
const dbQuery = 'INSERT INTO users(name, email, password, is_admin) VALUES($1, $2, $3, $4)';
await pool.query(dbQuery, [name, email, hashedPassword, isAdmin]);
return next();
} catch (error) {
return res.status(400).json({ error });
}
}

static async signin(req, res, next) {
const { email, password } = req;
const errResponse = {
status: 'error',
message: 'invalid email or password provided',
};

try {
// Check if a user with the provided email exists
const userExists = (await pool.query('SELECT * FROM users WHERE email=$1', [email])).rowCount;
if (!userExists) {
return res.status(400).json({
status: 'error',
message: 'invalid email or password provided',
});
}

if (!userExists) return res.status(400).json(errResponse);

const userDetails = (await pool.query('SELECT * FROM users WHERE email=$1', [email])).rows[0];
const correctPassword = await bcrpyt.compare(password, userDetails.password);

if (!correctPassword) {
return res.status(400).json({
status: 'error',
message: 'invalid email or password provided',
});
}
if (!correctPassword) return res.status(400).json(errResponse);

// Append important payload to request object
req.userId = userDetails.id;
Expand All @@ -64,7 +55,7 @@ class AuthController {
req.userStatus = userDetails.is_admin ? 'admin' : 'customer';
return next();
} catch (error) {
return res.status(400).json({ error });
return res.status(500).json();
}
}
}
Expand Down
1 change: 1 addition & 0 deletions server/middleware/authHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class AuthHandler {
res.status(200).json({
status: 'success',
message: 'user logged in successfully',
id: userId,
auth_token: token,
});
}
Expand Down
2 changes: 1 addition & 1 deletion server/routes/authRouter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import AuthHandler from '../middleware/authHandler';

const router = new Router();

router.post('/signup', Sanitize.signup, AuthController.signup);
router.post('/signup', Sanitize.signup, AuthController.signup, AuthController.signin, AuthHandler.generateAuthToken);
router.post('/login', Sanitize.signin, AuthController.signin, AuthHandler.generateAuthToken);

export default router;
19 changes: 8 additions & 11 deletions tests/routes/auth.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ describe('POST /auth/signup', () => {
.end((err, res) => {
if (err) done(err);

res.status.should.eql(201);
res.body.should.be.an('object').that.has.keys(['status', 'message', 'user']);
res.status.should.eql(200);
res.body.should.be.an('object').that.has.keys(['status', 'message', 'id', 'auth_token']);
res.body.status.should.eql('success');
res.body.user.should.have.keys(['id', 'name', 'email']);
res.body.user.name.should.eql(users.admin.name);
res.body.user.email.should.eql(users.admin.email);
res.body.id.should.eql(users.admin.id);
done();
});
});
Expand All @@ -35,12 +33,10 @@ describe('POST /auth/signup', () => {
.end((err, res) => {
if (err) done(err);

res.status.should.eql(201);
res.body.should.be.an('object').that.has.keys(['status', 'message', 'user']);
res.status.should.eql(200);
res.body.should.be.an('object').that.has.keys(['status', 'message', 'id', 'auth_token']);
res.body.status.should.eql('success');
res.body.user.should.have.keys(['id', 'name', 'email']);
res.body.user.name.should.eql(users.validUser.name);
res.body.user.email.should.eql(users.validUser.email);
res.body.id.should.eql(users.validUser.id);
done();
});
});
Expand Down Expand Up @@ -125,7 +121,8 @@ describe('POST /auth/login', () => {
if (err) done(err);

res.status.should.eql(200);
res.body.should.be.an('object').which.has.keys(['status', 'message', 'auth_token']);
res.body.should.be.an('object').which.has.keys(['status', 'message', 'id', 'auth_token']);
res.body.id.should.eql(users.validUser.id);
done();
});
});
Expand Down