-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
100 lines (85 loc) · 2.26 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
const express = require("express")
const app = express();
const bodyParser = require('body-parser')
const Pergunta = require("./database/Pergunta")
const Resposta = require("./database/Resposta")
const conn = require("./database/database");
const res = require("express/lib/response");
//database
conn.authenticate().then(() => {
console.log("conexao feita")
}).catch((msgErro) => {
console.log(msgErro)
})
//express utilizando o ejs como view engine
app.set('view engine', 'ejs')
app.use(express.static('public'))
//configurando o body parser
app.use(bodyParser.urlencoded({ extended: false }))
app.use(bodyParser.json());
//rotas
app.get("/home", (req, res) => {
res.render("home");
})
app.get("/", (req, res) => {
Pergunta.findAll({
raw: true,
order: [
['createdAt', 'desc']
]
}).then(perguntas => {
console.log(perguntas)
res.render("index", {
perguntas: perguntas
})
})
})
app.get("/perguntar", (req, res) => {
res.render("perguntar");
})
app.post("/perguntas-salvas", (req, res) => {
var titulo = req.body.titulo
var descricao = req.body.descricao
Pergunta.create({
titulo: titulo,
descricao: descricao
}).then(() => {
res.redirect("/")
})
})
app.get("/pergunta/:id", (req, res) => {
var id = req.params.id
Pergunta.findOne({
where: { id: id }
}).then(pergunta => {
if (pergunta != undefined) {
Resposta.findAll({
where: { perguntaId: pergunta.id },
order: [
['createdAt', 'desc']
]
}).then(respostas => {
res.render("pergunta", {
pergunta: pergunta,
respostas: respostas
});
})
} else {
res.redirect("/")
}
})
})
app.post("/responder", (req, res) => {
var corpo = req.body.corpo
var perguntaId = req.body.pergunta
Resposta.create({
corpo: corpo,
perguntaId: perguntaId
}).then(() => {
res.redirect("/pergunta/" + perguntaId)
});
});
const port = process.env.PORT || 8080;
app.listen(port, () => {
console.log("App rodando no localhost:8080")
})