-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
110 lines (63 loc) · 1.97 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
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
const express = require("express");
const app = express();
const mongoose = require("mongoose");
const path = require("path");
const Chat = require("./models/chat.js");
const methodOverride = require("method-override");
app.set("views", path.join(__dirname,"views"));
app.set("view engine", "ejs");
app.use(express.static(path.join(__dirname, "public")));
app.use(methodOverride("_method"));
app.use(express.urlencoded({extended: true}));
main().then(()=> {console.log("connection succedded!")})
.catch(err=>{console.log(err)});
async function main() {
await mongoose.connect('mongodb://127.0.0.1:27017/whatsapp');
}
// let chat1 = new Chat({
// from : "kartik",
// to : "sanyam",
// msg : "aur bosdke",
// created_at: new Date()
// })
// chat1.save();
app.get("/",(req,res)=>{
res.send("WELCOME TO THE PAGE. USE '/chats' TO START YOUR CHATS ");
})
app.get("/chats",async (req,res)=>{
let chats = await Chat.find();
res.render("index.ejs",{chats});
})
app.get("/chats/new",(req,res)=>{
res.render("new.ejs");
})
app.post("/chats",(req,res)=>{
let {from , to , msg} = req.body;
let newchat = new Chat({
from : from,
to: to,
msg: msg,
created_at: new Date()
});
newchat.save().then((res)=>{console.log("chat saved")}).catch((err)=>{console.log(err)});
res.redirect("/chats");
})
app.get("/chats/:id/edit",async (req,res)=>{
let {id} = req.params;
let chat = await Chat.findById(id);
res.render("edit",{chat});
})
app.put("/chats/:id", async (req, res) => {
let { id } = req.params;
let { msg: newMsg } = req.body;
let updatedChat = await Chat.findByIdAndUpdate(id, { msg: newMsg }, { new: true });
res.redirect("/chats");
});
app.delete("/chats/:id", async (req,res)=>{
let {id} = req.params;
await Chat.findByIdAndDelete(id);
res.redirect("/chats");
})
app.listen(8085,()=>{
console.log("server is listening on port 8085..");
})