-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.py
295 lines (244 loc) · 10.4 KB
/
main.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
from fastapi import APIRouter, Request, HTTPException, FastAPI, Depends
from sqlalchemy import create_engine, Column, Integer, String, ForeignKey, Date
from sqlalchemy.orm import sessionmaker, relationship
from sqlalchemy.ext.declarative import declarative_base
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from sqlalchemy.orm import aliased
from datetime import datetime, timedelta
import logging
app = APIRouter()
app = FastAPI()
# Configuration des en-têtes CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["GET", "POST", "PUT", "DELETE"],
allow_headers=["*"],
)
# Connexion à la base de données PetFlix (chaimaa)
DATABASE_URL = "mysql://chaimaa:[email protected]:3306/PetFlix"
# DATABASE_URL = "mysql://root@localhost/PetFlix"
engine = create_engine(DATABASE_URL)
logging.info("Connexion à la base de données PetFlix")
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
Base = declarative_base()
class VideoData(BaseModel):
titre: str
description: str
url: str
date_ajout: str
class Video(Base):
__tablename__ = "video"
id_video = Column(Integer, primary_key=True, index=True)
titre = Column(String, index=True)
description = Column(String)
url = Column(String)
date_ajout = Column(Date, index=True)
class Animal(Base):
__tablename__ = "animal"
id_animal = Column(Integer, primary_key=True, index=True)
type = Column(String, index=True)
nom = Column(String, index=True)
age = Column(Integer, default=None)
date_arrive = Column(Date, index=True)
date_adoption = Column(Date, default=None)
id_video = Column(Integer, ForeignKey("video.id_video"))
id_membres = Column(Integer, ForeignKey("membresAsso.id_membres"))
adoptions = relationship("Adoption", back_populates="animal")
class Membre(Base):
__tablename__ = "membresAsso"
id_membres = Column(Integer, primary_key=True, index=True)
nom = Column(String, index=True)
prenom = Column(String, index=True)
ville = Column(String, index=True)
email = Column(String, index=True)
telephone = Column(String(30), default=None)
class Adoptant(Base):
__tablename__ = "adoptant"
id_adoptant = Column(Integer, primary_key=True, index=True)
nom = Column(String, index=True)
prenom = Column(String, index=True)
adresse = Column(String)
email = Column(String, unique=True, index=True)
class Adoption(Base):
__tablename__ = "adoption"
id_adoptant = Column(Integer, primary_key=True, index=True)
id_animal = Column(Integer, ForeignKey("animal.id_animal"))
date_adoption = Column(Date, index=True)
animal = relationship("Animal", back_populates="adoptions")
class Controle(Base):
__tablename__ = "controle"
id_controle = Column(Integer, primary_key=True, index=True)
date_controle = Column(Date, index=True)
id_adoption = Column(Integer, ForeignKey("adoption.id"))
class AdoptionData(BaseModel):
id_animal: int
id_adoptant: int
date_adoption: str
# Route pour récupérer la liste des adoptants enregistrés
@app.get("/get-adoptants")
async def list_adoptants(request: Request):
try:
db = SessionLocal()
adoptants = db.query(Adoptant).all()
adoptants_details = [
{
"id": adoptant.id_adoptant,
"nom": adoptant.nom,
"prenom": adoptant.prenom,
"adresse": adoptant.adresse,
"email": adoptant.email
} for adoptant in adoptants
]
return {"adoptants": adoptants_details}
except Exception as e:
raise HTTPException(status_code=500, detail=f"Erreur lors de la récupération des adoptants : {str(e)}")
# Route pour récupérer la liste des animaux enregistrés en base
@app.get("/get-animaux")
async def list_animaux(request: Request):
try:
db = SessionLocal()
animaux = db.query(Animal).all()
animaux_details = [
{
"id": animal.id_animal,
"type": animal.type,
"nom": animal.nom,
"age": animal.age,
"date_arrive": animal.date_arrive.strftime("%Y-%m-%d"),
"date_adoption": animal.date_adoption.strftime("%Y-%m-%d") if animal.date_adoption else None
} for animal in animaux
]
return {"animaux": animaux_details}
except Exception as e:
raise HTTPException(status_code=500, detail=f"Erreur lors de la récupération des animaux : {str(e)}")
@app.get("/videos/")
async def list_videos(request: Request, animal_type: str = None, member_city: str = None):
db = SessionLocal()
# Créer des alias pour les tables Animal et Video
AnimalAlias = aliased(Animal)
VideoAlias = aliased(Video)
# Créer la requête SQL pour récupérer les vidéos filtrées
query = db.query(VideoAlias).join(AnimalAlias, VideoAlias.id_video == AnimalAlias.id_video)
# Filtrer par type d'animal
if animal_type:
query = query.filter(AnimalAlias.type == animal_type)
# Filtrer par ville du membre asso
if member_city:
query = query.join(Membre, AnimalAlias.id_membres == Membre.id_membres).filter(Membre.ville == member_city)
# Récupérer les vidéos après application des filtres
videos = query.all()
video_details = [
{
"id": video.id_video,
"titre": video.titre,
"description": video.description,
"url": video.url,
"date_ajout": video.date_ajout.strftime("%Y-%m-%d")
} for video in videos
]
return {"videos": video_details}
# Route qui présente les animaux à adopter avec les coordonnées du membre de l’association
@app.get("/videos/{video_id}/details")
async def video_details(request: Request, video_id: int):
db = SessionLocal()
video = db.query(Video).filter(Video.id_video == video_id).first()
if video is None:
raise HTTPException(status_code=404, detail=f"Vidéo non trouvée : {video_id}")
video_details = {
"id": video.id_video,
"titre": video.titre,
"description": video.description,
"url": video.url,
"date_ajout": video.date_ajout.strftime("%Y-%m-%d")
}
# détails de tous les animaux associés à la vidéo
animals = db.query(Animal).filter(Animal.id_video == video_id).all()
animals_details = []
for animal in animals:
# détails du membre de l'association associé à l'animal
member = db.query(Membre).filter(Membre.id_membres == animal.id_membres).first()
if member is None:
raise HTTPException(status_code=404, detail=f"Membre non trouvé pour l'animal associé à la vidéo : {video_id}")
animal_details = {
"id": animal.id_animal,
"type": animal.type,
"nom": animal.nom,
"age": animal.age,
"date_arrive": animal.date_arrive.strftime("%Y-%m-%d"),
"date_adoption": animal.date_adoption.strftime("%Y-%m-%d") if animal.date_adoption else None,
"membre_associé": {
"id": member.id_membres,
"nom": member.nom,
"prenom": member.prenom,
"ville": member.ville,
"email": member.email,
"telephone": member.telephone
}
}
animals_details.append(animal_details)
return {
"video": video_details,
"animaux_associés": animals_details
}
# Route pour ajouter une nouvelle vidéo d'adoption
@app.post("/create-video")
async def add_video(request: Request, video_data: VideoData):
try:
db = SessionLocal()
date_ajout = datetime.strptime(video_data.date_ajout, "%Y-%m-%d").date()
new_video = Video (
titre=video_data.titre,
description=video_data.description,
url=video_data.url,
date_ajout=date_ajout
)
db.add(new_video)
db.commit()
db.refresh(new_video)
return {"message": "La vidéo d'adoption a été ajoutée avec succès", "id_video": new_video.id_video}
except Exception as e:
raise HTTPException(status_code=500, detail=f"Erreur lors de l'ajout de la vidéo d'adoption : {str(e)}")
# Route pour afficher les controles à venir
@app.get("/get-controles-a-venir")
async def get_controles_a_venir(request: Request):
try:
db = SessionLocal()
controles_a_venir = db.execute(
"SELECT c.id_controle, c.date_controle, c.id_adoption, a.date_adoption, a.id_adoptant, ad.nom AS nom_adoptant, ad.prenom AS prenom_adoptant, an.nom AS nom_animal \
FROM controle c \
INNER JOIN adoption a ON c.id_adoption = a.id_adoption \
INNER JOIN adoptant ad ON a.id_adoptant = ad.id_adoptant \
INNER JOIN animal an ON a.id_animal = an.id_animal"
).fetchall()
controles_a_venir_details = [
{
"id_controle": controle.id_controle,
"date_controle": controle.date_controle.strftime("%Y-%m-%d"),
"id_adoption": controle.id_adoption,
"date_adoption": controle.date_adoption.strftime("%Y-%m-%d"),
"id_adoptant": controle.id_adoptant,
"nom_adoptant": controle.nom_adoptant,
"prenom_adoptant": controle.prenom_adoptant,
"nom_animal": controle.nom_animal
} for controle in controles_a_venir
]
return {"controles_a_venir": controles_a_venir_details}
except Exception as e:
raise HTTPException(status_code=500, detail=f"Erreur lors de la récupération des contrôles à venir : {str(e)}")
@app.post("/create-adoption")
async def create_adoption(request: Request, adoption_data: AdoptionData):
try:
db = SessionLocal()
new_adoption = Adoption(
id_animal=adoption_data.id_animal,
id_adoptant=adoption_data.id_adoptant,
date_adoption=datetime.strptime(adoption_data.date_adoption, "%Y-%m-%d").date()
)
db.add(new_adoption)
db.commit()
return {"message": "Adoption créée avec succès"}
except Exception as e:
raise HTTPException(status_code=500, detail=f"Erreur lors de la création de l'adoption : {str(e)}")