-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
63 lines (50 loc) · 1.66 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
// importando biblio
const express = require('express')
// conexao mysql
const mysql = require('mysql2')
// instanciando express
const app = express()
// definicao de porta
const port = 3000
// estabelecendo conexao mysql
var connection = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'm4y8$4q0L',
database: 'sistema_noticias'
})
// estabelecendo conexao
connection.connect()
// criando serviço de hello world
app.get('/', (req, res) => {
res.send('Hello World!')
})
// busca categorias
app.get('/news-api/v1/categorias', (req, res) => {
connection.query('SELECT id, nome FROM sistema_noticias.categoria', function (err, rows, fields) {
if (err) throw err
res.send(rows)
})
})
// busca noticias
app.get('/news-api/v1/categorias/:categoriaId/noticias', (req, res) => {
connection.query(`SELECT id, titulo FROM sistema_noticias.noticia WHERE id_categoria = ${req.params.categoriaId}`, function (err, rows, fields) {
if (err) throw err
res.send(rows)
})
})
//busca uma noticia
app.get('/news-api/v1/categorias/:categoriaId/noticias/:noticiaId', (req, res) => {
connection.query(`SELECT id, titulo, conteudo FROM sistema_noticias.noticia WHERE id_categoria = ${req.params.categoriaId} AND id = ${req.params.noticiaId}`, function (err, rows, fields) {
if (err) throw err
res.send(rows[0]) //sempre retorna array. selecioando o primeiro objeto
})
})
// subindo servidor node
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
// PADRAO ARQUITETURAS
// view - visual
// controller - controla fluxo
// model - busca no BD