Lottery wine functions & controller.

Split all wine/prelottrey wines into separate controller.
Now also have endpoints for deleting or updating single wine by id.
This commit is contained in:
2021-01-24 12:12:52 +01:00
parent 4d822ccb64
commit 6d5f0e824f
2 changed files with 222 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
const path = require("path");
const Attendee = require(path.join(__dirname, "/schemas/Attendee"));
const PreLotteryWine = require(path.join(__dirname, "/schemas/PreLotteryWine"));
class UserNotFound extends Error {
constructor(message = "User not found.") {
@@ -11,6 +12,16 @@ class UserNotFound extends Error {
// TODO log missing user
}
class WineNotFound extends Error {
constructor(message = "Wine not found.") {
super(message);
this.name = "WineNotFound";
this.statusCode = 404;
}
// TODO log missing user
}
const redactAttendeeInfoMapper = attendee => {
return {
name: attendee.name,
@@ -79,10 +90,71 @@ const deleteAttendees = () => {
return Attendee.deleteMany();
};
const allWines = () => {
return PreLotteryWine.find();
};
const addWines = wines => {
const prelotteryWines = wines.map(wine => {
let newPrelotteryWine = new PreLotteryWine({
name: wine.name,
vivinoLink: wine.vivinoLink,
rating: wine.rating,
image: wine.image,
price: wine.price,
country: wine.country,
id: wine.id
});
return newPrelotteryWine.save();
});
return Promise.all(prelotteryWines);
};
const updateWineById = (id, updateModel) => {
return PreLotteryWine.findOne({ _id: id }).then(wine => {
if (wine == null) {
throw new WineNotFound();
}
const updatedWine = {
name: updateModel.name || wine.name,
vivinoLink: updateModel.vivinoLink || wine.vivinoLink,
rating: updateModel.rating || wine.rating,
image: updateModel.image || wine.image,
price: updateModel.price || wine.price,
country: updateModel.country || wine.country,
id: updateModel.id || wine.id
};
return PreLotteryWine.updateOne({ _id: id }, updatedWine).then(_ => updatedWine);
});
};
const deleteWineById = id => {
return PreLotteryWine.findOne({ _id: id }).then(wine => {
if (wine == null) {
throw new WineNotFound();
}
return PreLotteryWine.deleteOne({ _id: id }).then(_ => wine);
});
};
const deleteWines = () => {
return PreLotteryWine.deleteMany();
};
module.exports = {
allAttendees,
addAttendee,
updateAttendeeById,
deleteAttendeeById,
deleteAttendees
deleteAttendees,
allWines,
addWines,
updateWineById,
deleteWineById,
deleteWines
};