# -*- mode: python -*- # -*- coding: utf-8 -*- ############################################################################## # # Gestion scolarite IUT # # Copyright (c) 1999 - 2023 Emmanuel Viennet. All rights reserved. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # Emmanuel Viennet emmanuel.viennet@viennet.net # ############################################################################## """Photos: trombinoscopes """ import io from zipfile import ZipFile, BadZipfile from flask.templating import render_template import reportlab from reportlab.lib.units import cm, mm from reportlab.platypus import Paragraph from reportlab.platypus import Table, TableStyle from reportlab.platypus.doctemplate import BaseDocTemplate from reportlab.lib import styles from reportlab.lib import colors from PIL import Image as PILImage import flask from flask import url_for, g, send_file, request from app import log import app.scodoc.sco_utils as scu from app.scodoc.TrivialFormulator import TrivialFormulator from app.scodoc.sco_exceptions import ScoValueError from app.scodoc.sco_pdf import SU from app.scodoc import html_sco_header from app.scodoc import htmlutils from app.scodoc import sco_import_etuds from app.scodoc import sco_etud from app.scodoc import sco_excel from app.scodoc import sco_groups_view from app.scodoc import sco_pdf from app.scodoc import sco_photos from app.scodoc import sco_portal_apogee from app.scodoc import sco_preferences from app.scodoc import sco_trombino_doc def trombino( group_ids=(), # liste des groupes à afficher formsemestre_id=None, # utilisé si pas de groupes selectionné etat=None, format="html", dialog_confirmed=False, ): """Trombinoscope""" if not etat: etat = None # may be passed as '' # Informations sur les groupes à afficher: groups_infos = sco_groups_view.DisplayedGroupsInfos( group_ids, formsemestre_id=formsemestre_id, etat=etat ) # if format != "html" and not dialog_confirmed: ok, dialog = check_local_photos_availability(groups_infos, fmt=format) if not ok: return dialog if format == "zip": return _trombino_zip(groups_infos) elif format == "pdf": return _trombino_pdf(groups_infos) elif format == "pdflist": return _listeappel_photos_pdf(groups_infos) elif format == "doc": return sco_trombino_doc.trombino_doc(groups_infos) else: raise Exception("invalid format") def _trombino_html_header(): return html_sco_header.sco_header(javascripts=["js/trombino.js"]) def trombino_html(groups_infos): "HTML snippet for trombino (with title and menu)" menu_trombi = [ { "title": "Charger des photos...", "endpoint": "scolar.photos_import_files_form", "args": {"group_ids": groups_infos.group_ids}, }, { "title": "Obtenir archive Zip des photos", "endpoint": "scolar.trombino", "args": {"group_ids": groups_infos.group_ids, "format": "zip"}, }, { "title": "Recopier les photos depuis le portail", "endpoint": "scolar.trombino_copy_photos", "args": {"group_ids": groups_infos.group_ids}, }, ] if groups_infos.members: if groups_infos.tous_les_etuds_du_sem: group_txt = "Tous les étudiants" else: group_txt = f"Groupe {groups_infos.groups_titles}" else: group_txt = "Aucun étudiant inscrit dans ce groupe !" H = [ f"""
{group_txt} | """ ] if groups_infos.members: H.append( "" + htmlutils.make_menu("Gérer les photos", menu_trombi, alone=True) + " | " ) H.append("
Attention: {nb_missing} photos ne sont pas disponibles et ne peuvent pas être exportées.
Vous pouvez exporter seulement les photos existantes""", dest_url="trombino", OK="Exporter seulement les photos existantes", cancel_url="groups_view?curtab=tab-photos&" + groups_infos.groups_query_args, parameters=parameters, ), ) return True, "" def _trombino_zip(groups_infos): "Send photos as zip archive" data = io.BytesIO() with ZipFile(data, "w") as zip_file: # assume we have the photos (or the user acknowledged the fact) # Archive originals (not reduced) images, in JPEG for t in groups_infos.members: im_path = sco_photos.photo_pathname(t["photo_filename"], size="orig") if not im_path: continue img = open(im_path, "rb").read() code_nip = t["code_nip"] if code_nip: filename = code_nip + ".jpg" else: filename = f'{t["nom"]}_{t["prenom"]}_{t["etudid"]}.jpg' zip_file.writestr(filename, img) size = data.tell() log(f"trombino_zip: {size} bytes") data.seek(0) return send_file( data, mimetype="application/zip", download_name="trombi.zip", as_attachment=True, ) # Copy photos from portal to ScoDoc def trombino_copy_photos(group_ids=[], dialog_confirmed=False): "Copy photos from portal to ScoDoc (overwriting local copy)" groups_infos = sco_groups_view.DisplayedGroupsInfos(group_ids) back_url = "groups_view?%s&curtab=tab-photos" % groups_infos.groups_query_args portal_url = sco_portal_apogee.get_portal_url() header = html_sco_header.sco_header(page_title="Chargement des photos") footer = html_sco_header.sco_footer() if not portal_url: return f"""{ header }
portail non configuré
{ footer } """ if not dialog_confirmed: return scu.confirm_dialog( f"""Les photos du groupe {groups_infos.groups_titles} présentes dans ScoDoc seront remplacées par celles du portail (si elles existent).
(les photos sont normalement automatiquement copiées lors de leur première utilisation, l'usage de cette fonction n'est nécessaire que si les photos du portail ont été modifiées)
""", dest_url="", cancel_url=back_url, parameters={"group_ids": group_ids}, ) msg = [] nok = 0 for etud in groups_infos.members: path, diag = sco_photos.copy_portal_photo_to_fs(etud) msg.append(diag) if path: nok += 1 msg.append(f"{nok} photos correctement chargées") return f"""{ header }retour au trombinoscope { footer } """ def _get_etud_platypus_image(t, image_width=2 * cm): """Returns a platypus object for the photo of student t""" try: path = sco_photos.photo_pathname(t["photo_filename"], size="small") if not path: # log('> unknown') path = sco_photos.UNKNOWN_IMAGE_PATH im = PILImage.open(path) w0, h0 = im.size[0], im.size[1] if w0 > h0: W = image_width H = h0 * W / w0 else: H = image_width W = w0 * H / h0 return reportlab.platypus.Image(path, width=W, height=H) except: log( "*** exception while processing photo of %s (%s) (path=%s)" % (t["nom"], t["etudid"], path) ) raise def _trombino_pdf(groups_infos): "Send photos as pdf page" # Generate PDF page filename = f"trombino_{groups_infos.groups_filename}.pdf" sem = groups_infos.formsemestre # suppose 1 seul semestre PHOTO_WIDTH = 3 * cm COL_WIDTH = 3.6 * cm N_PER_ROW = 5 # XXX should be in ScoDoc preferences style_sheet = styles.getSampleStyleSheet() report = io.BytesIO() # in-memory document, no disk file objects = [ Paragraph( SU("Trombinoscope " + sem["titreannee"] + " " + groups_infos.groups_titles), style_sheet["Heading3"], ) ] L = [] n = 0 currow = [] log(f"_trombino_pdf {len(groups_infos.members)} elements") for t in groups_infos.members: img = _get_etud_platypus_image(t, image_width=PHOTO_WIDTH) elem = Table( [ [img], [ Paragraph( SU(sco_etud.format_nomprenom(t)), style_sheet["Normal"], ) ], ], colWidths=[PHOTO_WIDTH], ) currow.append(elem) if n == (N_PER_ROW - 1): L.append(currow) currow = [] n = (n + 1) % N_PER_ROW if currow: currow += [" "] * (N_PER_ROW - len(currow)) L.append(currow) if not L: table = Paragraph(SU("Aucune photo à exporter !"), style_sheet["Normal"]) else: table = Table( L, colWidths=[COL_WIDTH] * N_PER_ROW, style=TableStyle( [ # ('RIGHTPADDING', (0,0), (-1,-1), -5*mm), ("VALIGN", (0, 0), (-1, -1), "TOP"), ("GRID", (0, 0), (-1, -1), 0.25, colors.grey), ] ), ) objects.append(table) # Build document document = BaseDocTemplate(report) document.addPageTemplates( sco_pdf.ScoDocPageTemplate( document, preferences=sco_preferences.SemPreferences(sem["formsemestre_id"]), ) ) document.build(objects) report.seek(0) return send_file( report, mimetype=scu.PDF_MIMETYPE, download_name=scu.sanitize_filename(filename), as_attachment=True, ) # --------------------- Sur une idée de l'IUT d'Orléans: def _listeappel_photos_pdf(groups_infos): "Doc pdf pour liste d'appel avec photos" filename = f"trombino_{groups_infos.groups_filename}.pdf" sem = groups_infos.formsemestre # suppose 1 seul semestre PHOTO_WIDTH = 2 * cm # COLWIDTH = 3.6 * cm # ROWS_PER_PAGE = 26 # XXX should be in ScoDoc preferences style_sheet = styles.getSampleStyleSheet() report = io.BytesIO() # in-memory document, no disk file objects = [ Paragraph( SU( f"""{sem["titreannee"]} {groups_infos.groups_titles} ({len(groups_infos.members)})""" ), style_sheet["Heading3"], ) ] L = [] n = 0 currow = [] log(f"_listeappel_photos_pdf {len(groups_infos.members)} elements") n = len(groups_infos.members) # npages = n / 2*ROWS_PER_PAGE + 1 # nb de pages papier # for page in range(npages): for i in range(n): # page*2*ROWS_PER_PAGE, (page+1)*2*ROWS_PER_PAGE): t = groups_infos.members[i] img = _get_etud_platypus_image(t, image_width=PHOTO_WIDTH) txt = Paragraph( SU(sco_etud.format_nomprenom(t)), style_sheet["Normal"], ) if currow: currow += [""] currow += [img, txt, ""] if i % 2: L.append(currow) currow = [] if currow: currow += [" "] * 3 L.append(currow) if not L: table = Paragraph(SU("Aucune photo à exporter !"), style_sheet["Normal"]) else: table = Table( L, colWidths=[2 * cm, 4 * cm, 27 * mm, 5 * mm, 2 * cm, 4 * cm, 27 * mm], style=TableStyle( [ # ('RIGHTPADDING', (0,0), (-1,-1), -5*mm), ("VALIGN", (0, 0), (-1, -1), "TOP"), ("GRID", (0, 0), (2, -1), 0.25, colors.grey), ("GRID", (4, 0), (-1, -1), 0.25, colors.grey), ] ), ) objects.append(table) # Build document document = BaseDocTemplate(report) document.addPageTemplates( sco_pdf.ScoDocPageTemplate( document, preferences=sco_preferences.SemPreferences(sem["formsemestre_id"]), ) ) document.build(objects) data = report.getvalue() return scu.sendPDFFile(data, filename) # --------------------- Upload des photos de tout un groupe def photos_generate_excel_sample(group_ids=()): """Feuille excel pour import fichiers photos""" fmt = sco_import_etuds.sco_import_format() data = sco_import_etuds.sco_import_generate_excel_sample( fmt, group_ids=group_ids, only_tables=["identite"], exclude_cols=[ "date_naissance", "lieu_naissance", "nationalite", "statut", "photo_filename", ], extra_cols=["fichier_photo"], ) return scu.send_file( data, "ImportPhotos", scu.XLSX_SUFFIX, scu.XLSX_MIMETYPE, attached=True ) # return sco_excel.send_excel_file(data, "ImportPhotos" + scu.XLSX_SUFFIX) def photos_import_files_form(group_ids=()): """Formulaire pour importation photos""" if not group_ids: raise ScoValueError("paramètre manquant !") groups_infos = sco_groups_view.DisplayedGroupsInfos(group_ids) back_url = f"groups_view?{groups_infos.groups_query_args}&curtab=tab-photos" H = [ html_sco_header.sco_header(page_title="Import des photos des étudiants"), f"""
Vous pouvez aussi charger les photos individuellement via la fiche de chaque étudiant (menu "Étudiant" / "Changer la photo").
Cette page permet de charger en une seule fois les photos
de plusieurs étudiants.
Il faut d'abord remplir une feuille excel donnant les noms
des fichiers images (une image par étudiant).
Ensuite, réunir vos images dans un fichier zip, puis télécharger simultanément le fichier excel et le fichier zip.