Docfile commited on
Commit
00a8e67
·
verified ·
1 Parent(s): 3211a98

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +460 -0
app.py ADDED
@@ -0,0 +1,460 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, render_template, request, send_file
2
+ import os
3
+ import convertapi
4
+ from docx import Document
5
+ from docx.shared import Pt, Cm, RGBColor
6
+ from docx.enum.text import WD_ALIGN_PARAGRAPH
7
+ from docx.enum.table import WD_TABLE_ALIGNMENT
8
+ from docx.oxml.ns import nsdecls
9
+ from docx.oxml import parse_xml
10
+ from docx.oxml.shared import qn
11
+ from docx.oxml.xmlchemy import OxmlElement
12
+
13
+ # Configuration des identifiants ConvertAPI
14
+ convertapi.api_credentials = 'secret_8wCI6pgOP9AxLVJG'
15
+
16
+ # --- Classe de génération de document ---
17
+ class EvaluationGymnique:
18
+ def __init__(self):
19
+ self.document = Document()
20
+ self.document.sections[0].page_height = Cm(29.7)
21
+ self.document.sections[0].page_width = Cm(21)
22
+ self.document.sections[0].left_margin = Cm(1.5)
23
+ self.document.sections[0].right_margin = Cm(1.5)
24
+ self.document.sections[0].top_margin = Cm(1)
25
+ self.document.sections[0].bottom_margin = Cm(1)
26
+
27
+ # Informations d'en-tête par défaut
28
+ self.centre_examen = "Centre d'examen"
29
+ self.type_examen = "Bac Général"
30
+ self.serie = "Série"
31
+ self.etablissement = "Établissement"
32
+ self.session = "2025"
33
+ self.nom_candidat = "Candidat"
34
+
35
+ # Liste vide pour les éléments techniques
36
+ self.elements_techniques = []
37
+ self.appreciations = ["M", "PM", "NM", "NR"]
38
+
39
+ def ajouter_entete_colore(self):
40
+ header_paragraph = self.document.add_paragraph()
41
+ header_paragraph.alignment = WD_ALIGN_PARAGRAPH.CENTER
42
+ header_paragraph.space_after = Pt(6)
43
+ header_run = header_paragraph.add_run("ÉVALUATION GYMNASTIQUE")
44
+ header_run.bold = True
45
+ header_run.font.size = Pt(14)
46
+ header_run.font.color.rgb = RGBColor(0, 32, 96)
47
+
48
+ header_table = self.document.add_table(rows=3, cols=2)
49
+ header_table.style = 'Table Grid'
50
+ header_table.autofit = False
51
+
52
+ for row in header_table.rows:
53
+ row.height = Cm(0.8)
54
+ for row in header_table.rows:
55
+ for cell in row.cells:
56
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="D9E2F3"/>')
57
+ cell._tc.get_or_add_tcPr().append(shading_elm)
58
+
59
+ # Première ligne
60
+ cell = header_table.cell(0, 0)
61
+ paragraph = cell.paragraphs[0]
62
+ run = paragraph.add_run("Centre d'examen: ")
63
+ run.bold = True
64
+ run.font.size = Pt(10)
65
+ run.font.color.rgb = RGBColor(0, 32, 96)
66
+ paragraph.add_run(self.centre_examen).font.size = Pt(10)
67
+
68
+ cell = header_table.cell(0, 1)
69
+ paragraph = cell.paragraphs[0]
70
+ run = paragraph.add_run("Examen: ")
71
+ run.bold = True
72
+ run.font.size = Pt(10)
73
+ run.font.color.rgb = RGBColor(0, 32, 96)
74
+ paragraph.add_run(self.type_examen).font.size = Pt(10)
75
+
76
+ # Deuxième ligne
77
+ cell = header_table.cell(1, 0)
78
+ paragraph = cell.paragraphs[0]
79
+ run = paragraph.add_run("Série: ")
80
+ run.bold = True
81
+ run.font.size = Pt(10)
82
+ run.font.color.rgb = RGBColor(0, 32, 96)
83
+ paragraph.add_run(self.serie).font.size = Pt(10)
84
+
85
+ cell = header_table.cell(1, 1)
86
+ paragraph = cell.paragraphs[0]
87
+ run = paragraph.add_run("Établissement: ")
88
+ run.bold = True
89
+ run.font.size = Pt(10)
90
+ run.font.color.rgb = RGBColor(0, 32, 96)
91
+ paragraph.add_run(self.etablissement).font.size = Pt(10)
92
+
93
+ # Troisième ligne
94
+ cell = header_table.cell(2, 0)
95
+ paragraph = cell.paragraphs[0]
96
+ run = paragraph.add_run("Session: ")
97
+ run.bold = True
98
+ run.font.size = Pt(10)
99
+ run.font.color.rgb = RGBColor(0, 32, 96)
100
+ paragraph.add_run(self.session).font.size = Pt(10)
101
+
102
+ cell = header_table.cell(2, 1)
103
+ paragraph = cell.paragraphs[0]
104
+ run = paragraph.add_run("Candidat: ")
105
+ run.bold = True
106
+ run.font.size = Pt(10)
107
+ run.font.color.rgb = RGBColor(0, 32, 96)
108
+ paragraph.add_run(self.nom_candidat).font.size = Pt(10)
109
+
110
+ self.document.add_paragraph().space_after = Pt(4)
111
+
112
+ def _add_image_relation(self, image_path):
113
+ """Ajoute une relation d'image et retourne l'ID"""
114
+ # Récupérer la partie du document
115
+ part = self.document.part
116
+
117
+ # Ajouter l'image à la partie
118
+ with open(image_path, 'rb') as f:
119
+ image_blob = f.read()
120
+ image_part = part.package.image_parts.get_or_add_image_part(image_blob)
121
+
122
+ # Créer une relation entre la partie du document et l'image
123
+ rId = part.relate_to(image_part, 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image')
124
+
125
+ return rId
126
+
127
+ def creer_tableau_elements(self, image_path=None):
128
+ table = self.document.add_table(rows=len(self.elements_techniques) + 1, cols=5)
129
+ table.style = 'Table Grid'
130
+ table.alignment = WD_TABLE_ALIGNMENT.CENTER
131
+
132
+ # Configuration des largeurs de colonnes
133
+ for cell in table.columns[0].cells:
134
+ cell.width = Cm(8)
135
+ for cell in table.columns[1].cells:
136
+ cell.width = Cm(3)
137
+ for cell in table.columns[2].cells:
138
+ cell.width = Cm(2)
139
+ for cell in table.columns[3].cells:
140
+ cell.width = Cm(2.5)
141
+ for cell in table.columns[4].cells:
142
+ cell.width = Cm(2.5)
143
+
144
+ # Ajouter une image en arrière-plan si fournie
145
+ if image_path and os.path.exists(image_path):
146
+ # Accéder à l'élément XML du tableau
147
+ tbl = table._tbl
148
+
149
+ # Créer l'élément tblPr s'il n'existe pas
150
+ tblPr = tbl.get_or_add_tblPr()
151
+
152
+ # Créer le namespace nécessaire
153
+ nsPrefix = {'xmlns:v': 'urn:schemas-microsoft-com:vml',
154
+ 'xmlns:o': 'urn:schemas-microsoft-com:office:office',
155
+ 'xmlns:r': 'http://schemas.openxmlformats.org/officeDocument/2006/relationships'}
156
+
157
+ # Ajouter les namespaces au document
158
+ for prefix, uri in nsPrefix.items():
159
+ tbl.set(prefix, uri)
160
+
161
+ # Créer l'élément pour l'image d'arrière-plan
162
+ background = OxmlElement('w:background')
163
+ background.set(qn('w:color'), "auto")
164
+ background.set(qn('w:themeColor'), "background1")
165
+
166
+ # Créer les éléments VML pour l'image
167
+ vFill = OxmlElement('v:fill')
168
+ rId = self._add_image_relation(image_path)
169
+ vFill.set(qn('r:id'), rId)
170
+ vFill.set('type', 'frame')
171
+ vFill.set('src', os.path.basename(image_path))
172
+ vFill.set('o:title', "Background")
173
+ vFill.set('opacity', '0.3')
174
+
175
+ background.append(vFill)
176
+ tblPr.append(background)
177
+
178
+ for row in table.rows:
179
+ row.height = Cm(1)
180
+
181
+ # En-tête du tableau
182
+ header_row = table.rows[0]
183
+ for cell in header_row.cells:
184
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="BDD7EE"/>')
185
+ cell._tc.get_or_add_tcPr().append(shading_elm)
186
+
187
+ headers = ["ELEMENTS TECHNIQUES", "CATEGORIES D'ELEMENTS TECHNIQUES ET PONDERATION", "", "APPRECIATIONS", "POINTS Accordés"]
188
+ for i, header in enumerate(headers):
189
+ cell = table.cell(0, i)
190
+ cell.text = header
191
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
192
+ run = cell.paragraphs[0].runs[0]
193
+ run.bold = True
194
+ run.font.size = Pt(9)
195
+ run.font.color.rgb = RGBColor(0, 32, 96)
196
+ table.cell(0, 1).merge(table.cell(0, 2))
197
+
198
+ # Ajout des éléments techniques
199
+ for i, element in enumerate(self.elements_techniques, 1):
200
+ element_cell = table.cell(i, 0)
201
+ element_cell.text = element["nom"]
202
+ element_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.LEFT
203
+ run = element_cell.paragraphs[0].runs[0]
204
+ run.bold = True
205
+ run.font.size = Pt(9)
206
+
207
+ categorie_cell = table.cell(i, 1)
208
+ categorie_cell.text = element["categorie"]
209
+ categorie_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
210
+ run = categorie_cell.paragraphs[0].runs[0]
211
+ run.bold = True
212
+ run.font.size = Pt(9)
213
+ run.italic = True
214
+
215
+ points_cell = table.cell(i, 2)
216
+ points_cell.text = str(element["points"])
217
+ points_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
218
+ run = points_cell.paragraphs[0].runs[0]
219
+ run.bold = True
220
+ run.font.size = Pt(9)
221
+ run.italic = True
222
+
223
+ def ajouter_note_jury(self):
224
+ para = self.document.add_paragraph()
225
+ para.space_before = Pt(4)
226
+ para.space_after = Pt(4)
227
+ run = para.add_run("NB1 : Zone réservée aux membres du jury ! Le jury cochera le point correspondant au niveau de réalisation de l'élément gymnique par le candidat.")
228
+ run.bold = True
229
+ run.font.color.rgb = RGBColor(255, 0, 0)
230
+ run.font.size = Pt(9)
231
+
232
+ def creer_tableau_recapitulatif(self):
233
+ note_table = self.document.add_table(rows=3, cols=13)
234
+ note_table.style = 'Table Grid'
235
+ note_table.alignment = WD_TABLE_ALIGNMENT.CENTER
236
+
237
+ for row in note_table.rows:
238
+ row.height = Cm(0.6)
239
+ for cell in note_table.rows[0].cells:
240
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="BDD7EE"/>')
241
+ cell._tc.get_or_add_tcPr().append(shading_elm)
242
+
243
+ for col, (type_lettre, points) in enumerate([("A", "1pt"), ("B", "1,5pt"), ("C", "2pts"), ("D", "2,5pts"), ("E", "3pts")]):
244
+ idx = col * 2
245
+ if idx + 1 < len(note_table.columns):
246
+ cell = note_table.cell(0, idx)
247
+ cell.merge(note_table.cell(0, idx + 1))
248
+ cell.text = f"Type {type_lettre}\n{points}"
249
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
250
+ for run in cell.paragraphs[0].runs:
251
+ run.bold = True
252
+ run.font.size = Pt(9)
253
+ run.font.color.rgb = RGBColor(0, 32, 96)
254
+
255
+ for col, (titre, points) in enumerate([("ROV", "2pts"), ("Projet", "2pts"), ("Réalisation", "16pts")], 10):
256
+ if col < len(note_table.columns):
257
+ cell = note_table.cell(0, col)
258
+ cell.text = f"{titre}\n{points}"
259
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
260
+ for run in cell.paragraphs[0].runs:
261
+ run.bold = True
262
+ run.font.size = Pt(9)
263
+ run.font.color.rgb = RGBColor(0, 32, 96)
264
+
265
+ for col in range(5):
266
+ idx = col * 2
267
+ if idx + 1 < len(note_table.columns):
268
+ neg_cell = note_table.cell(1, idx)
269
+ neg_cell.text = "NEG"
270
+ neg_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
271
+ for run in neg_cell.paragraphs[0].runs:
272
+ run.italic = True
273
+ run.font.size = Pt(9)
274
+
275
+ note_cell = note_table.cell(1, idx + 1)
276
+ note_cell.text = "Note"
277
+ note_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
278
+ for run in note_cell.paragraphs[0].runs:
279
+ run.italic = True
280
+ run.font.size = Pt(9)
281
+
282
+ for col in range(10, 13):
283
+ if col < len(note_table.columns):
284
+ cell = note_table.cell(1, col)
285
+ cell.text = "Note"
286
+ cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
287
+ for run in cell.paragraphs[0].runs:
288
+ run.italic = True
289
+ run.font.size = Pt(9)
290
+
291
+ for col, type_lettre in enumerate(["A", "B", "C", "D", "E"]):
292
+ idx = col * 2
293
+ if idx < len(note_table.columns):
294
+ neg_cell = note_table.cell(2, idx)
295
+ neg_cell.text = ""
296
+ neg_cell.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
297
+
298
+ def ajouter_note_candidat_avec_cadre(self):
299
+ note_table = self.document.add_table(rows=1, cols=1)
300
+ note_table.style = 'Table Grid'
301
+ note_table.alignment = WD_TABLE_ALIGNMENT.CENTER
302
+
303
+ cell = note_table.cell(0, 0)
304
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="E2EFDA"/>')
305
+ cell._tc.get_or_add_tcPr().append(shading_elm)
306
+
307
+ p = cell.paragraphs[0]
308
+ run = p.add_run("NB2: Après le choix des catégories d'éléments gymniques par le candidat, ce dernier remplira la colonne de pointage selon l'orientation suivante: A (0.25; 0.5; 0.75; 1) B (0.25; 0.5; 0.75; 1; 1.25; 1.5) C (0.5; 0.75; 1; 1.25; 1.5; 2) D (0.75; 1; 1.25; 1.5; 2; 2.5) et E (0.75; 1; 1.5; 2; 2.5; 3) également, le candidat devra fournir 2 copies de son projet sur une page! (appréciations: NR, NM, PM, M).")
309
+ run.italic = True
310
+ run.font.size = Pt(8)
311
+
312
+ def ajouter_zone_note(self):
313
+ zone_note = self.document.add_table(rows=1, cols=2)
314
+ zone_note.style = 'Table Grid'
315
+ zone_note.alignment = WD_TABLE_ALIGNMENT.RIGHT
316
+
317
+ # Définir une largeur fixe pour les deux cellules
318
+ cell_width = Cm(2)
319
+
320
+ cell_libelle = zone_note.cell(0, 0)
321
+ cell_libelle.width = cell_width
322
+ cell_libelle.text = "Note finale"
323
+ cell_libelle.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.RIGHT
324
+ run = cell_libelle.paragraphs[0].runs[0]
325
+ run.bold = True
326
+ run.font.size = Pt(12)
327
+ run.font.color.rgb = RGBColor(0, 32, 96)
328
+
329
+ cell_saisie = zone_note.cell(0, 1)
330
+ cell_saisie.width = cell_width
331
+ zone_note.rows[0].height = cell_width
332
+ shading_elm = parse_xml(f'<w:shd {nsdecls("w")} w:fill="F2F2F2"/>')
333
+ cell_saisie._tc.get_or_add_tcPr().append(shading_elm)
334
+ cell_saisie.text = "/20"
335
+ cell_saisie.paragraphs[0].alignment = WD_ALIGN_PARAGRAPH.CENTER
336
+ run = cell_saisie.paragraphs[0].runs[0]
337
+ run.bold = True
338
+ run.font.size = Pt(12)
339
+
340
+ # Ajouter plus d'espace avant la liste des correcteurs
341
+ self.document.add_paragraph().space_after = Pt(10)
342
+ self.document.add_paragraph().space_after = Pt(10)
343
+
344
+ def ajouter_lignes_correcteurs(self):
345
+ para_intro = self.document.add_paragraph()
346
+ para_intro.space_before = Pt(6)
347
+
348
+ for role in ["Projet", "principal", "ROV"]:
349
+ para = self.document.add_paragraph()
350
+ para.space_before = Pt(4)
351
+ para.space_after = Pt(4)
352
+ run = para.add_run(f"Correcteur {role} : ")
353
+ run.bold = True
354
+ para.add_run(".................................................................")
355
+
356
+ # Méthodes de modification des données
357
+ def modifier_centre_examen(self, nom):
358
+ self.centre_examen = nom
359
+
360
+ def modifier_type_examen(self, type_examen):
361
+ self.type_examen = type_examen
362
+
363
+ def modifier_serie(self, serie):
364
+ self.serie = serie
365
+
366
+ def modifier_etablissement(self, nom):
367
+ self.etablissement = nom
368
+
369
+ def modifier_session(self, annee):
370
+ self.session = annee
371
+
372
+ def modifier_candidat(self, nom):
373
+ self.nom_candidat = nom
374
+
375
+ def ajouter_element(self, nom, categorie, points):
376
+ self.elements_techniques.append({
377
+ "nom": nom,
378
+ "categorie": categorie,
379
+ "points": float(points)
380
+ })
381
+
382
+ def generer_document(self, nom_fichier="evaluation_gymnastique.docx", image_path=None):
383
+ self.ajouter_entete_colore()
384
+ self.creer_tableau_elements(image_path=image_path)
385
+ self.ajouter_note_jury()
386
+ self.creer_tableau_recapitulatif()
387
+ self.ajouter_lignes_correcteurs()
388
+ self.ajouter_zone_note()
389
+ self.ajouter_note_candidat_avec_cadre()
390
+ self.document.save(nom_fichier)
391
+ return nom_fichier
392
+
393
+ # --- Application Flask ---
394
+ app = Flask(__name__)
395
+
396
+ # Assurer que le dossier de téléchargements existe
397
+ UPLOAD_FOLDER = 'uploads'
398
+ os.makedirs(UPLOAD_FOLDER, exist_ok=True)
399
+
400
+ @app.route("/", methods=["GET", "POST"])
401
+ def index():
402
+ if request.method == "POST":
403
+ # Récupération des informations depuis le formulaire
404
+ centre_examen = request.form.get("centre_examen", "Centre d'examen")
405
+ type_examen = request.form.get("type_examen", "Bac Général")
406
+ serie = request.form.get("serie", "Série")
407
+ etablissement = request.form.get("etablissement", "Établissement")
408
+ session_value = request.form.get("session", "2025")
409
+ nom_candidat = request.form.get("nom_candidat", "Candidat")
410
+
411
+ # Gérer le téléchargement de l'image
412
+ background_image = None
413
+ if 'background_image' in request.files:
414
+ file = request.files['background_image']
415
+ if file.filename != '':
416
+ image_path = os.path.join(UPLOAD_FOLDER, file.filename)
417
+ file.save(image_path)
418
+ background_image = image_path
419
+
420
+ # Création et configuration du document
421
+ evaluation = EvaluationGymnique()
422
+ evaluation.modifier_centre_examen(centre_examen)
423
+ evaluation.modifier_type_examen(type_examen)
424
+ evaluation.modifier_serie(serie)
425
+ evaluation.modifier_etablissement(etablissement)
426
+ evaluation.modifier_session(session_value)
427
+ evaluation.modifier_candidat(nom_candidat)
428
+
429
+ # Récupération des éléments techniques ajoutés dynamiquement
430
+ element_names = request.form.getlist("new_element_name")
431
+ element_categories = request.form.getlist("new_element_categorie")
432
+ element_points = request.form.getlist("new_element_points")
433
+ for name, cat, pts in zip(element_names, element_categories, element_points):
434
+ if name and cat and pts:
435
+ evaluation.ajouter_element(name, cat, pts)
436
+
437
+ # Génération du document DOCX
438
+ filename = "evaluation_gymnastique.docx"
439
+ evaluation.generer_document(filename, image_path=background_image)
440
+
441
+ # Vérification du format de sortie demandé
442
+ output_format = request.form.get("format", "docx")
443
+ if output_format == "pdf":
444
+ # Conversion en PDF via ConvertAPI
445
+ result = convertapi.convert('pdf', {
446
+ 'File': filename,
447
+ 'FileName': 'evaluation_gymnastique',
448
+ 'ConvertMetadata': 'false',
449
+ 'ConvertHeadings': 'false'
450
+ }, from_format='doc')
451
+ pdf_filename = "evaluation_gymnastique.pdf"
452
+ result.save_files(pdf_filename)
453
+ return send_file(pdf_filename, as_attachment=True)
454
+ else:
455
+ return send_file(filename, as_attachment=True)
456
+
457
+ return render_template("index.html")
458
+
459
+ if __name__ == "__main__":
460
+ app.run(debug=True)