-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathindex.js
92 lines (63 loc) · 2.1 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
require('dotenv').config();
const express = require('express');
const bodyParser = require('body-parser');
const { MongoClient, ObjectId } = require('mongodb');
(async () => {
const dbUser = process.env.DB_USER;
const dbPassword = process.env.DB_PASSWORD;
const dbHost = process.env.DB_HOST;
const dbName = process.env.DB_NAME;
const url = `mongodb+srv://${dbUser}:${dbPassword}@${dbHost}/${dbName}?retryWrites=true&w=majority`;
console.info('Conectando ao banco de dados...');
const client = await MongoClient.connect(url, { useUnifiedTopology: true });
console.info('MongoDB conectado com sucesso!');
const db = client.db(dbName);
const app = express()
app.use(bodyParser.json());
const port = process.env.PORT || 3000;
/*
Create, Read (All/Single), Update & Delete
Criar, Ler (Tudo ou Individual), Atualizar e Remover
*/
const mensagens = db.collection('mensagens');
app.get('/', (req, res) => {
res.send('Hello World!');
});
// Criar (Create)
app.post('/mensagens', async (req, res) => {
const mensagem = req.body;
await mensagens.insertOne(mensagem);
res.send(mensagem);
});
// Ler Tudo (Read All)
app.get('/mensagens', async (req, res) => {
res.send(await mensagens.find().toArray());
});
// Ler Individual (Read Single)
app.get('/mensagens/:id', async (req, res) => {
const id = req.params.id;
const mensagem = await mensagens.findOne({ _id: ObjectId(id) });
res.send(mensagem);
});
// Atualizar (Update)
app.put('/mensagens/:id', async (req, res) => {
const id = req.params.id;
const mensagem = req.body;
await mensagens.updateOne(
{ _id: ObjectId(id) },
{
$set: mensagem
}
);
res.send('Mensagem editada com sucesso.');
});
// Remoção (Delete)
app.delete('/mensagens/:id', async (req, res) => {
const id = req.params.id;
await mensagens.deleteOne({ _id: ObjectId(id) });
res.send('Mensagem removida com sucesso.');
});
app.listen(port, () => {
console.info('Servidor rodando em http://localhost:' + port);
});
})();