shell bypass 403
const Architect = require('../models/architect.model.js');
// Create and Save a new admin
exports.create = (req, res) => {
// Validate request
if (!req.body.nom) {
return res.status(400).send({
message: "Architect content can not be empty"
});
}
// Create a admin
const architect = new Architect({
nom: req.body.nom || "Untitled Architect",
email: req.body.email,
telephone: req.body.telephone,
premierResponsable: req.body.premierResponsable,
adresse: req.body.adresse,
});
// Save admin in the database
architect.save()
.then(data => {
res.send(data);
}).catch(err => {
res.status(500).send({
message: err.message || "Some error occurred while creating the architect."
});
});
};
// Retrieve and return all admin from the database.
exports.findAll = (req, res) => {
Architect.find()
.then(architects => {
res.send(architects);
}).catch(err => {
res.status(500).send({
message: err.message || "Some error occurred while retrieving architects."
});
});
};
// Find a single admin with a adminId
exports.findOne = (req, res) => {
Architect.findById(req.params.architectId)
.then(architect => {
if (!architect) {
return res.status(404).send({
message: "Architect not found with id " + req.params.architectId
});
}
res.send(architect);
}).catch(err => {
if (err.kind === 'ObjectId') {
return res.status(404).send({
message: "architect not found with id " + req.params.architectId
});
}
return res.status(500).send({
message: "Error retrieving architect with id " + req.params.architectId
});
});
};
// Update a admin identified by the adminId in the request
exports.update = (req, res) => {
// Validate Request
if (!req.body.nom) {
return res.status(400).send({
message: "architect content can not be empty"
});
}
// Find admin and update it with the request body
Architect.findByIdAndUpdate(req.params.architectId, {
nom: req.body.nom || "Untitled Architect",
email: req.body.email,
telephone: req.body.telephone,
premierResponsable: req.body.premierResponsable,
adresse: req.body.adresse,
}, { new: true })
.then(architect => {
if (!architect) {
return res.status(404).send({
message: "architect not found with id " + req.params.architectId
});
}
res.send(architect);
}).catch(err => {
if (err.kind === 'ObjectId') {
return res.status(404).send({
message: "architect not found with id " + req.params.architectId
});
}
return res.status(500).send({
message: "Error updating architect with id " + req.params.architectId
});
});
};
// Delete a admin with the specified adminId in the request
exports.delete = (req, res) => {
Architect.findByIdAndRemove(req.params.architectId)
.then(architect => {
if (!architect) {
return res.status(404).send({
message: "architect not found with id " + req.params.architectId
});
}
res.send({ message: "architect deleted successfully!" });
}).catch(err => {
if (err.kind === 'ObjectId' || err.name === 'NotFound') {
return res.status(404).send({
message: "architect not found with id " + req.params.architectId
});
}
return res.status(500).send({
message: "Could not delete admin with id " + req.params.architectId
});
});
};