-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdao.py
62 lines (47 loc) · 2 KB
/
dao.py
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
from models import Jogo, Usuario
SQL_DELETA_JOGO = 'delete from jogo where id = %s'
SQL_JOGO_POR_ID = 'SELECT id, nome, categoria, console from jogo where id = %s'
SQL_USUARIO_POR_ID = 'SELECT id, nome, senha from usuario where id = %s'
SQL_ATUALIZA_JOGO = 'UPDATE jogo SET nome=%s, categoria=%s, console=%s where id = %s'
SQL_BUSCA_JOGOS = 'SELECT id, nome, categoria, console from jogo'
SQL_CRIA_JOGO = 'INSERT into jogo (nome, categoria, console) values (%s, %s, %s)'
class JogoDao:
def __init__(self, db):
self.__db = db
def salvar(self, jogo):
cursor = self.__db.connection.cursor()
if (jogo.id):
cursor.execute(SQL_ATUALIZA_JOGO, (jogo.nome, jogo.categoria, jogo.console, jogo.id))
else:
cursor.execute(SQL_CRIA_JOGO, (jogo.nome, jogo.categoria, jogo.console))
jogo.id = cursor.lastrowid
self.__db.connection.commit()
return jogo
def listar(self):
cursor = self.__db.connection.cursor()
cursor.execute(SQL_BUSCA_JOGOS)
jogos = traduz_jogos(cursor.fetchall())
return jogos
def busca_por_id(self, id):
cursor = self.__db.connection.cursor()
cursor.execute(SQL_JOGO_POR_ID, (id,))
tupla = cursor.fetchone()
return Jogo(tupla[1], tupla[2], tupla[3], id=tupla[0])
def deletar(self, id):
self.__db.connection.cursor().execute(SQL_DELETA_JOGO, (id, ))
self.__db.connection.commit()
class UsuarioDao:
def __init__(self, db):
self.__db = db
def buscar_por_id(self, id):
cursor = self.__db.connection.cursor()
cursor.execute(SQL_USUARIO_POR_ID, (id,))
dados = cursor.fetchone()
usuario = traduz_usuario(dados) if dados else None
return usuario
def traduz_jogos(jogos):
def cria_jogo_com_tupla(tupla):
return Jogo(tupla[1], tupla[2], tupla[3], id=tupla[0])
return list(map(cria_jogo_com_tupla, jogos))
def traduz_usuario(tupla):
return Usuario(tupla[0], tupla[1], tupla[2])