forked from bhavya-parikh/Gujarat_Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
54 lines (50 loc) · 1.48 KB
/
index.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
var express = require("express")
var bodyParser = require("body-parser")
var mongoose = require("mongoose")
const app = express()
app.use(bodyParser.json())
app.use(express.static('public'))
app.use(bodyParser.urlencoded({
extended:true
}))
mongoose.connect('mongodb://localhost:27017/complaintdetail',{
useNewUrlParser: true,
useUnifiedTopology: true
});
var db = mongoose.connection;
db.on('error',()=>console.log("Error in connecting to database "));
db.once('open',()=>console.log("Connected to database"));
app.post("/index",(req,res)=>{
var shop_owner_name = req.body.shopownername
var shop_name = req.body.shopname
var date = req.body.date
var address = req.body.shopaddress
var phno = req.body.phone
var complaint = req.body.complaint
var otherdetails = req.body.other
var area = req.body.area
var data = {
"shop_owner_name":shop_owner_name,
"shop_name":shop_name,
"date":date,
"address":address,
"phno":phno,
"complaint":complaint,
"otherdetails":otherdetails,
"area":area
}
db.collection('complaints').insertOne(data,(err,collection)=>{
if(err){
throw err;
}
console.log("Record Inserted Successfully");
})
return res.redirect('/success.html')
})
app.get("/",(req,res)=>{
res.set({
"Allow-access-Allow-Origin": '*'
})
return res.redirect('/index')
}).listen(3000);
console.log("Listening from port 3000")