-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
252 lines (243 loc) · 6.11 KB
/
app.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
240
241
242
243
244
245
246
247
248
249
250
251
252
const express = require("express");
const bodyParser = require("body-parser");
var fs = require('fs');
var path = require('path');
const mongoose = require("mongoose");
const app = express();
app.use(express.static("public"));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended:true}));
app.set('view engine', 'ejs');
mongoose.connect("mongodb://localhost:27017/StudentDB");
//HOme page
app.get("/", function(req, res){
Room.find(function(err, rentdata){
if(err){
console.log(err);
} else {
Review.find(function(err,data){
if(err){
console.log(err);
} else {
res.render("index" ,{jsondata : rentdata, data:data});
}
})
}})
});
// Rent Room section
const roomDetailsSchema = new mongoose.Schema({
name:{
type:String,
required:[true, "please check your data entery, name is not specified!!"]
},
location:{
type:String,
required:[true, "please check your data entery, location is not specified!!"]
},
rent:{
type:Number,
required:[true, "please check your data entery, rent is not specified!!"]
},
contact:{
type:Number,
required:[true, "please check your data entery, contact is not specified!!"]
},
email:{
type:String,
required:[true, "please check your data entery, email is not specified!!"]
}
})
const Room = mongoose.model("room",roomDetailsSchema);
app.get("/roomrent", function(req, res){
Room.find(function(err, rentdata){
if(err){
console.log(err);
} else {
res.render("roomRent" ,{jsondata : rentdata});
}
})
});
app.get("/addroom", function(req, res){
res.render("addRoom");
});
app.post("/addroom", function(req,res){
let newRoom = new Room({
name: req.body.name,
location: req.body.location,
rent: req.body.rent,
contact: req.body.contact,
email: req.body.email
})
newRoom.save();
res.redirect("success");
});
// Market section
const productSchema = new mongoose.Schema({
productName:String,
name:String,
description:String,
condition:String,
price:Number,
location:String,
contact:Number,
email:String
})
const Product = new mongoose.model("product",productSchema);
app.get("/market", function(req, res){
Product.find(function(err, data){
if(err){
console.log(err);
} else {
res.render("market",{product: data});
}
})
});
app.get("/viewproduct", function(req, res){
Product.find(function(err, data){
if(err){
console.log(err);
} else {
res.render("viewproduct.ejs",{product: data, i: req.query.tag, rand:req.query.rand});
}
})
})
app.get("/addproduct", function(req, res){
res.render("addproduct");
});
app.post("/addproduct", function(req,res){
let newproduct = new Product({
productName: req.body.productName,
name: req.body.name,
description: req.body.description,
condition: req.body.condition,
price: req.body.price,
location: req.body.location,
contact: req.body.contact,
email: req.body.email
})
newproduct.save();
res.redirect("success");
})
// coaching section
const coachingSchema = new mongoose.Schema({
name:{
type:String,
required:[true, "please check your data entery, name is not specified!!"]
},
location:{
type:String,
required:[true, "please check your data entery, location is not specified!!"]
},
course:{
type:String
},
contact:{
type:Number,
required:[true, "please check your data entery, contact is not specified!!"]
},
email:{
type:String,
required:[true, "please check your data entery, email is not specified!!"]
},
rating:{
type:Number,
required:[true, "please check your data entery, rating is not specified!!"],
min:0,
max:5
},
ratings:[{rate:Number}]
})
const Coaching = new mongoose.model("coachingList",coachingSchema);
app.get("/coachings", function(req, res){
Coaching.find(function(err, coachingData){
if(err){
console.log(err);
} else {
res.render("coachingReviews", {coachinglist: coachingData});
}
});
});
app.get("/addcoaching", function(req, res){
Coaching.find(function(err, coachingData){
if(err){
console.log(err);
} else {
res.render("addcoaching", {coachinglist: coachingData});
}
});
});
app.post("/addcoaching", function(req, res){
let newCoaching = new Coaching({
name: req.body.name,
location: req.body.location,
course: req.body.course,
contact: req.body.contact,
email: req.body.email,
rating : 0,
ratings:[]
})
newCoaching.save();
res.redirect("success");
});
app.get("/viewcoaching", function(req, res){
console.log(req.query.tag);
Coaching.find(function(err, coachingData){
if(err){
console.log(err);
} else {
res.render("viewcoaching", {coachinglist: coachingData, i: req.query.tag});
}
});
});
app.post("/viewcoaching", function(req, res){
let newrating={rate:Number(req.body.stars)};
const id= req.body.index;
Coaching.findOneAndUpdate( {_id : id}, {$push: {ratings: newrating}}, function(err,success){
if(err){
console.log(err);
} else{
console.log(success);
}
});
let sum=0;
let numofratings=0;
Coaching.findById(id,function(err, data){
data.ratings.forEach(function(item){
sum+=Number(item.rate);
})
numofratings=Number(data.ratings.length);
const updatedrating = Math.round(sum/numofratings);
Coaching.updateOne({_id :id},{ $set:{rating : updatedrating}}, function(err){
if(err){
console.log(err);
} else {
console.log("successfully updated");
}
});
});
res.render("success");
})
//rating
const reviewSchema = new mongoose.Schema({
review:String,
name:String
})
const Review = new mongoose.model("review", reviewSchema);
app.get("/review", function(req,res){
res.render("rating");
})
app.post("/reviews", function(req, res){
const newReview = new Review({
review:req.body.review,
name: req.body.name
})
newReview.save();
res.render("success");
})
// Success page
app.get("/success", function(req, res){
res.render("success");
});
app.listen(3000, function(){
console.log("Server started on port 3000.");
});