forked from AinaMaminirina18/Planificator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetting_bd.py
224 lines (204 loc) · 10.2 KB
/
setting_bd.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import aiomysql
from datetime import date
class DatabaseManager:
"""Gestionnaire de la base de données utilisant aiomysql."""
def __init__(self, loop):
self.loop = loop
self.pool = None
async def connect(self):
"""Crée un pool de connexions à la base de données."""
self.pool = await aiomysql.create_pool(
host="localhost",
port=3306,
user="root",
password="root",
db="Planificator",
loop=self.loop
)
async def add_user(self, nom, prenom, email, username, password, type_compte):
"""Ajoute un utilisateur dans la base de données."""
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"INSERT INTO Account (nom, prenom, email, username, password, type_compte) VALUES (%s, %s, %s, %s, %s, %s)",
(nom, prenom, email, username, password, type_compte)
)
await conn.commit()
async def update_user(self,new_nom, new_prenom, new_email, new_username, new_password, id):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"UPDATE Account SET nom = %s, prenom= %s, email=%s, username=%s, password=%s WHERE id_compte = %s",
(new_nom, new_prenom, new_email, new_username, new_password, id)
)
await conn.commit()
async def delete_user(self, email):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"DELETE FROM Account WHERE email = %s",
email
)
await conn.commit()
async def verify_user(self, username):
"""Vérifie si un utilisateur existe avec les informations données."""
async with self.pool.acquire() as conn:
async with conn.cursor() as cursor:
await cursor.execute(
"SELECT * FROM Account WHERE username = (%s);", username
)
result = await cursor.fetchone()
return result
async def get_all_user(self):
async with self.pool.acquire() as conn:
async with conn.cursor() as cursor:
await cursor.execute(
"SELECT username, email FROM Account WHERE type_compte != 'Administrateur' ORDER BY username ASC"
)
resultat = await cursor.fetchall()
return resultat
async def get_current_user(self, id_compte):
async with self.pool.acquire() as conn:
async with conn.cursor() as cursor:
await cursor.execute(
"SELECT * FROM Account WHERE id_compte = %s",
id_compte
)
current = await cursor.fetchone()
return current
async def get_user(self, username):
async with self.pool.acquire() as conn:
async with conn.cursor() as cursor:
await cursor.execute(
"SELECT * FROM Account WHERE username = %s",
username
)
current = await cursor.fetchone()
return current
async def create_contrat(self, client_id, date_contrat, date_debut, date_fin, duree, categorie):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"INSERT INTO Contrat (client_id, date_contrat, date_debut, date_fin,duree, categorie) VALUES (%s, %s, %s, %s, %s, %s)",
(client_id, date_contrat, date_debut, date_fin, duree, categorie))
await conn.commit()
return cur.lastrowid
async def create_client(self, nom, prenom, email, telephone, adresse, date_ajout, categorie, axe):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"INSERT INTO Client (nom, prenom, email, telephone, adresse, date_ajout, categorie, axe) VALUES (%s, %s, %s, %s, %s, %s, %s, %s)",
(nom, prenom, email, telephone, adresse, date_ajout, categorie, axe))
await conn.commit()
return cur.lastrowid
async def get_all_client(self):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute("SELECT DISTINCT nom, email, adresse, date_ajout FROM Client ORDER BY nom ASC")
return await cur.fetchall()
async def typetraitement(self, type):
async with self.pool.acquire() as conn:
async with conn.cursor() as cursor:
try:
await cursor.execute("INSERT INTO TypeTraitement (typeTraitement) VALUES (%s)",
(type,))
await conn.commit()
return cursor.lastrowid
except Exception as e:
print(e)
async def creation_traitement(self, contrat_id, id_type_traitement):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
try:
await cur.execute("INSERT INTO Traitement (contrat_id, id_type_traitement) VALUES (%s, %s)",
(contrat_id, id_type_traitement))
await conn.commit()
return cur.lastrowid
except Exception as e:
print(e)
async def create_planning(self, traitement_id, mois_debut, mois_fin, mois_pause, redondance):
"""Crée un planning pour un traitement donné."""
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"INSERT INTO Planning (traitement_id, mois_debut, mois_fin, mois_pause, redondance) VALUES (%s, %s, %s, %s, %s)",
(traitement_id, mois_debut, mois_fin, mois_pause, redondance))
await conn.commit()
return cur.lastrowid
async def create_facture(self, traitement_id, montant, date_traitement, axe, remarque):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"INSERT INTO Facture (planning_detail_id, montant, date_traitement, axe, remarque) VALUES (%s, %s, %s, %s, %s)",
(traitement_id, montant, date_traitement, axe, remarque))
await conn.commit()
return cur.lastrowid
async def get_current_client(self, client, date):
async with self.pool.acquire() as conn:
async with conn.cursor() as cursor:
try:
await cursor.execute("""SELECT c.client_id AS id,
c.nom AS nom_client,
c.prenom AS prenom_client,
c.categorie AS categorie,
co.date_contrat,
tt.typeTraitement AS type_traitement,
co.duree AS duree_contrat,
co.date_debut AS debut_contrat,
co.date_fin AS fin_contrat,
c.email,
c.adresse,
c.axe,
c.telephone
FROM
Client c
JOIN
Contrat co ON c.client_id = co.client_id
JOIN
Traitement t ON co.contrat_id = t.contrat_id
JOIN
TypeTraitement tt ON t.id_type_traitement = tt.id_type_traitement
WHERE
c.nom = %s AND co.date_contrat = %s;""", (client, date))
resultat = await cursor.fetchone()
return resultat
except Exception as e:
print(e)
async def get_client(self):
async with self.pool.acquire() as conn :
async with conn.cursor() as cursor:
try:
await cursor.execute(
"""SELECT c.nom AS nom_client,
co.date_contrat,
tt.typeTraitement AS type_traitement,
co.duree AS duree_contrat,
co.date_debut AS debut_contrat,
co.date_fin AS fin_contrat,
c.categorie AS categorie
FROM
Client c
JOIN
Contrat co ON c.client_id = co.client_id
JOIN
Traitement t ON co.contrat_id = t.contrat_id
JOIN
TypeTraitement tt ON t.id_type_traitement = tt.id_type_traitement
ORDER BY
c.nom ASC;"""
)
result = await cursor.fetchall()
return result
except Exception as e:
print(e)
async def update_client(self, client_id, nom, prenom, email, telephone, adresse, categorie, axe):
async with self.pool.acquire() as conn:
async with conn.cursor() as cur:
await cur.execute(
"UPDATE Client SET nom = %s, prenom = %s, email = %s, telephone = %s, adresse = %s, categorie = %s, axe = %s WHERE client_id = %s",
(nom, prenom, email, telephone, adresse, categorie, axe, client_id))
await conn.commit()
async def close(self):
"""Ferme le pool de connexions."""
self.pool.close()
await self.pool.wait_closed()