-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
84 lines (66 loc) · 1.94 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
const express = require('express');
const app = express();
// criando tables
const pergunta = require('./database/Quest.js')
const resposta = require('./database/Resposta.js')
//conectando banco
const connec = require('./database/database.js');
connec.authenticate().then(() =>{
console.log('Conectado ao Banco!')
}).catch((err) => {
console.log('Erro:' + err)
})
//USANDO O EJS COMO VIEW ENGINE PARA O EXPRESS
app.set('view engine', 'ejs');
app.use(express.static('public'));
app.use(express.urlencoded({extended: true}))
app.use(express.json());
app.get('/', (req,res) => {
pergunta.findAll({raw: true}).then((pergunta) => {
console.log(pergunta)
pergunta.reverse();
res.render('index.ejs',{
quest: pergunta
});})
})
app.get('/perguntar',(req,res) =>{
res.render('perguntar.ejs');
})
app.post('/savequest',(req,res)=>{
var titulo = req.body.title
var quest = req.body.pergunta
pergunta.create({
title: titulo,
description: quest
}).then(()=>{
res.redirect('/perguntar');
});
});
app.get('/pergunta/:id', (req,res) =>{
var id = req.params.id;
pergunta.findOne({
where: {id: id}
}).then((pergunta) => {
if (pergunta != undefined){ // Pergunta encontrada
resposta.findAll({where: {perguntaId: pergunta.id}}).then((respostas) =>{
res.render('pergunta.ejs', {
id: pergunta,
res: respostas
});
})
}else{
res.redirect('/')
}
})
});
app.post('/resposta', (req,res) =>{
var corpo = req.body.corpo;
var ID = req.body.pergunta;
resposta.create({
corpo: corpo,
perguntaId: ID
}).then(()=>{
res.redirect('/pergunta/'+ID);
});
});
app.listen(8080, () =>{console.log('Funcionando.');})