-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapiServer.js
239 lines (213 loc) · 6.58 KB
/
apiServer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
const express = require("express");
var cors = require("cors");
const app = express();
const port = 3000;
const ObjectId = require("mongodb").ObjectId;
// These lines will be explained in detail later in the unit
app.use(express.json()); // process json
app.use(express.urlencoded({ extended: true }));
app.use(cors());
// These lines will be explained in detail later in the unit
const MongoClient = require("mongodb").MongoClient;
const uri =
"mongodb+srv://cqu:Qwer1234@cluster0.vc0wils.mongodb.net/?retryWrites=true&w=majority&appName=Cluster0";
const client = new MongoClient(uri, {
useNewUrlParser: true,
useUnifiedTopology: true,
});
// Global for general use
var userCollection;
var orderCollection;
var restaurantCollection;
var menuItemCollection;
var reviewsCollection;
client.connect((err) => {
userCollection = client.db("foodOrder").collection("users");
orderCollection = client.db("foodOrder").collection("orders");
restaurantCollection = client.db("foodOrder").collection("restaurants");
menuItemCollection = client.db("foodOrder").collection("menuItems");
reviewsCollection = client.db("foodOrder").collection("reviews");
// perform actions on the collection object
console.log("Database up!\n");
});
app.get("/restaurants", async (req, res) => {
restaurantCollection.find({}).toArray(function (err, docs) {
if (err) {
console.log("Some error.. " + err + "\n");
} else {
console.log(JSON.stringify(docs) + " have been retrieved.\n");
var str = docs;
res.send(str);
}
});
});
app.get("/menuItems/:restaurantId", async (req, res) => {
const restaurantId = req.params.restaurantId;
const restaurantObjectId = ObjectId(restaurantId);
menuItemCollection
.find({ restaurant_id: restaurantObjectId })
.project({})
.toArray(function (err, docs) {
if (err) {
console.error("Error fetching menu items:", error);
} else {
var str = docs;
res.send(str);
}
});
});
app.post("/checkout", async (req, res) => {
const { userId, orders } = req.body;
const orderData = orders.map((item) => ({
item_id: ObjectId(item.id),
count: item.count,
}));
const param = {
user_id: ObjectId(userId),
items: orderData,
date: new Date(),
};
// Save the orders to the database
await orderCollection.insertOne(param, function (err, result) {
if (err) {
console.error("Error during checkout:", err);
res.status(500).json({ message: "Error during checkout" });
} else {
res.status(201).json({ message: "Orders placed successfully" });
}
});
});
app.get("/orderList/:userId", async (req, res) => {
try {
const userId = req.params.userId;
const userObjectId = ObjectId(userId);
const orders = await orderCollection
.find({ user_id: userObjectId })
.toArray();
const orderList = await Promise.all(
orders.map(async (order) => {
const items = await Promise.all(
order.items.map(async (item) => {
const menuItem = await menuItemCollection.findOne(
{ _id: ObjectId(item.item_id) },
{ projection: { name: 1, price: 1, _id: 0 } }
);
return { ...item, name: menuItem.name, price: menuItem.price };
})
);
return { ...order, items };
})
);
res.status(200).json(orderList);
} catch (error) {
console.error("Error retrieving order list:", error);
res.status(500).json({ message: "Error retrieving order list" });
}
});
app.post("/verifyUser", (req, res) => {
loginData = req.body;
console.log(loginData);
userCollection
.find(
{ email: loginData.email, password: loginData.password },
{ projection: {} }
)
.toArray(function (err, docs) {
if (err) {
console.log("Some error.. " + err + "\n");
} else {
console.log(JSON.stringify(docs) + " have been retrieved.\n");
res.status(200).send(docs);
}
});
});
app.post("/postUserData", function (req, res) {
console.log("POST request received : " + JSON.stringify(req.body));
// Assume req.body contains a unique identifier like 'email'
const userEmail = req.body.email;
// Check if user already exists
userCollection.findOne({ email: userEmail }, function (err, existingUser) {
if (err) {
console.log("Error checking user existence: " + err);
res.status(500).send("Internal server error");
} else if (existingUser) {
console.log("User already exists: " + JSON.stringify(existingUser));
res.status(400).send("User already exists");
} else {
// Insert the new user since they don't exist
userCollection.insertOne(req.body, function (err, result) {
if (err) {
console.log("Some error.. " + err + "\n");
res.status(500).send("Error inserting user data");
} else {
console.log(JSON.stringify(req.body) + " have been uploaded\n");
res.send(req.body);
}
});
}
});
});
app.post("/submitReview", function (req, res) {
const restaurantId = ObjectId(req.body.restaurant_id);
const userId = ObjectId(req.body.user_id);
const reviewData = {
restaurant_id: restaurantId,
review: req.body.review,
user_id: userId,
date: new Date(),
};
reviewsCollection.insertOne(reviewData, function (err, result) {
if (err) {
console.log("Some error.. " + err + "\n");
} else {
console.log(JSON.stringify(req.body) + " has been submitted\n");
res.send(JSON.stringify(req.body));
}
});
});
app.get("/reviews", async (req, res) => {
try {
const reviews = await reviewsCollection
.aggregate([
{
$lookup: {
from: "restaurants",
localField: "restaurant_id",
foreignField: "_id",
as: "restaurant",
},
},
{
$unwind: "$restaurant",
},
{
$lookup: {
from: "users",
localField: "user_id",
foreignField: "_id",
as: "user",
},
},
{
$unwind: "$user",
},
{
$project: {
_id: 1,
review: 1,
date: 1,
restaurantName: "$restaurant.name",
userName: { $concat: ["$user.firstName", " ", "$user.lastName"] },
},
},
])
.toArray();
res.json(reviews);
} catch (error) {
console.error("Error fetching reviews:", error);
res.status(500).send("Internal Server Error");
}
});
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`);
});