Files
Ucharify_api/app/controllers/donor/donor.controller.js
T
2019-01-19 00:42:56 -08:00

90 lines
2.2 KiB
JavaScript

const db = require('../../config/db.config.js'),
bcrypt = require('bcrypt-nodejs'),
errorMaker = require('../../helpers/error.maker');
const Donor = db.Donor;
// Create/post a Donor
exports.create = (req, res, next) => {
// see if user already in db
Donor.findAll({
where: {
email: req.body.email
}
})
.then(donors => {
if (donors.length >= 1) {
return next(errorMaker(409, `Email Exists: ${req.body.email}`));
} else {
// hash and store
bcrypt.hash(req.body.password, null, null, function(error, hash) {
// Store hash in your password DB.
if (error) {
return next(error);
} else {
Donor.create({
first_name: req.body.first_name,
middle_name: req.body.middle_name,
last_name: req.body.last_name,
email: req.body.email,
password: hash, //hashed password
age: req.body.age,
phone: req.body.phone,
address: req.body.address,
city: req.body.city,
state: req.body.state,
country: req.body.country
})
.then(donor => {
// Send created donor to client
return res.status(201).json({
message: 'Donor created',
donor
});
})
.catch(error => next(error));
}
});
}
})
.catch(error => next(error));
};
// FETCH all Donor
exports.findAll = (req, res, next) => {
Donor.findAll().then(donors => {
// Send all donors to Client
res.status(200).json({
donors,
number_donors: donors.length
});
});
};
// Find a Donor by Id
exports.findById = (req, res) => {
Donor.findById(req.params.donor_id).then(donor => {
res.send(donor);
});
};
// Delete a Donor by Id
exports.delete = (req, res) => {
const id = req.params.donor_id;
Donor.destroy({
where: { id: id }
}).then(() => {
res.status(200).send('deleted successfully a donor with id = ' + id);
});
};
// // Update a Donor
// exports.update = (req, res) => {
// const id = req.params.donor_id;
// Donor.update( { firstname: req.body.firstname, lastname: req.body.lastname, age: req.body.age },
// { where: {id: req.params.donorId} }
// ).then(() => {
// res.status(200).send("updated successfully a donor with id = " + id);
// });
// };