From df18c5fedded0ec8c1902bf4cb6537ddef8f0b99 Mon Sep 17 00:00:00 2001 From: cherif Date: Sat, 19 Aug 2023 20:38:17 +0200 Subject: [PATCH] 19/08/23 - 20h30 --- .idea/workspace.xml | 22 +- Inscription_mgt.py | 286 +++++++++++- Log/log_file.log | 1037 ++++++++++++++++++++++++++++++++++++++++++ Session_Formation.py | 1 + main.py | 24 + prj_common.py | 9 + 6 files changed, 1365 insertions(+), 14 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index a33de21..b7feb3e 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,7 +1,7 @@ - + @@ -71,13 +71,6 @@ @@ -429,7 +429,6 @@ - @@ -454,6 +453,7 @@ - \ No newline at end of file diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 1fe84c8..318afaf 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -50,12 +50,12 @@ def AddStagiairetoClass(diction): field_list = ['nom', 'prenom', 'email', 'telephone', 'modefinancement', 'opco', 'class_internal_url', 'session_id', 'employeur', 'status', 'price', 'inscription_validation_date', 'token', 'client_rattachement_id', - 'adresse', 'code_postal', 'ville', 'pays'] + 'adresse', 'code_postal', 'ville', 'pays', ] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: mycommon.myprint(str(inspect.stack()[0][ - 3]) + " - Creation partner account : Le champ '" + val + "' n'est pas autorisé, Creation partenaire annulée") + 3]) + " - Creation partner account : Le champ '" + val + "' n'est pas autorisé") return False, "Impossible de créer le stagiaire. Toutes les informations fournies ne sont pas valables" """ @@ -1640,7 +1640,8 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): if (str(df['client_rattachement_nom'].values[n])): client_rattachement_nom = str(df['client_rattachement_nom'].values[n]) - local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), 'valide':'1', 'locked':'0'} + local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), 'valide':'1', + 'locked':'0', 'partner_recid' :str(partner_recid)} local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry) if( local_client_retval_count > 1 ): @@ -1702,6 +1703,285 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): + + +""" +Cette fonction permet d'importer un fichier excel pour les stagiaire de plusieurs session, plusieurs formations +/!\ : Controle session : on va utiliser les colonne : formation code externe et le code de la session +/!\ : controle du client : on va utiliser le mail et le nom du client pour voir si ca concorde. + +""" +def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=None): + try: + + ''' + # Verification que les champs reçus dans l'API sont bien dans la liste des champs autorisés + # Cela evite le cas ou une entité tierce ajouter les valeurs inconnu dans l'API + # Ici on doit mettre tous les champs possible (obligatoire ou non) de la BDD dans la liste + # field_list. + ''' + field_list = ['token',] + incom_keys = diction.keys() + for val in incom_keys: + if val not in field_list: + mycommon.myprint(str(inspect.stack()[0][3]) + " Le champ '" + val + "' n'existe pas, Creation participants annulée") + return False, " Verifier votre API" + + ''' + Une fois qu'on a controlé que toutes les clés mise dans l'API sont correcte. etape precedente, + On controle que les champs obligatoires sont presents dans la liste + ''' + field_list_obligatoire = ['token', ] + + for val in field_list_obligatoire: + if val not in diction: + mycommon.myprint(str(inspect.stack()[0][3]) + " - La valeur '" + val + "' n'est pas presente dans liste ") + return False, " Verifier votre API, Toutes les informations techniques ne sont pas fournies" + + my_token = "" + if ("token" in diction.keys()): + if diction['token']: + my_token = diction['token'] + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", my_token) + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + + + partner_recid = mycommon.get_parnter_recid_from_token(my_token) + if (partner_recid is False): + mycommon.myprint(str(inspect.stack()[0][3]) + " - partner_recid KO : Impossible d'importer la liste des participants ") + return False, " Les information de connexion sont incorrectes. Impossible d'importer la liste des participants" + + status, saved_file = mycommon.Upload_Save_CSV_File(file, Folder) + if (status == False): + mycommon.myprint("Impossible de recuperer correctement le fichier à importer") + return False, "Impossible d'importer la liste des participants, le nom du fichier est incorrect " + + #" Lecture du fichier " + #print(" Lecture du fichier : "+saved_file) + nb_line = 0 + + df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore') + + # Dictionnaire des champs utilisables + ''' + # Verification que les noms des colonne sont bien corrects" + ''' + field_list = ['formation_code_externe', 'code_session', 'prenom', 'nom', 'employeur', + 'telephone', 'email', 'modefinancement', 'opco', 'status', 'prix', 'adresse', 'code_postal', + 'ville', 'pays', 'client_rattachement_email', 'client_rattachement_nom'] + + + # Controle du nombre de lignes dans le fichier. + total_rows = len(df) + if( total_rows > MYSY_GV.MAX_PARTICIPANT_BY_CSV ): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le fichier comporte plus de "+str(MYSY_GV.MAX_PARTICIPANT_BY_CSV)+" lignes.") + return False, " Le fichier comporte plus de "+str(MYSY_GV.MAX_PARTICIPANT_BY_CSV)+" lignes." + + + #print(df.columns) + for val in df.columns: + if str(val).lower() not in field_list: + mycommon.myprint( + str(inspect.stack()[0][3])+" : entete du fichier csv. '" + val + "' n'est pas acceptée") + return False, " Entete du fichier csv. '" + val + "' n'est pas acceptée" + + # Verification des champs obligatoires dans le fichier + field_list_obligatoire_file = ['prenom', 'nom', 'email', 'modefinancement', 'status', 'prix'] + + for val in field_list_obligatoire_file: + if val not in df.columns: + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " : Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire") + return False, " Le champ '" + val + "' n'est pas présent dans le fichier. Il est obligatoire " + + """ + # Recuperation des info de la session. + session_data = MYSY_GV.dbname['session_formation'].find_one({'formation_session_id':str(session_id)}) + if( session_data is None ): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " La session de formation n'existe pas : Impossible d'importer la liste des participants ") + return False, "la session de formation n'existe pas. Impossible d'importer la liste des participants" + + #print(" #### session_data = ",session_data) + """ + x = range(0, total_rows) + for n in x: + mydata = {} + class_external_code = str(df['formation_code_externe'].values[n]) + #mydata['code_session'] = str(df['code_session'].values[n]) + mydata['prenom'] = str(df['prenom'].values[n]) + mydata['nom'] = str(df['nom'].values[n]) + mydata['employeur'] = str(df['employeur'].values[n]) + mydata['telephone'] = str(df['telephone'].values[n]) + mydata['email'] = str(df['email'].values[n]) + mydata['session_id'] = str(df['code_session'].values[n]) + mydata['token'] = str(my_token) + + """ + On verifie que le code de le session et le l'external class code correspondent. + En gros : que la formation en question a bien une session du meme code + """ + + + check_class_session_query = [{'$match': {'code_session':str(df['code_session'].values[n])}}, + {'$lookup': + { + 'from': 'myclass', + 'localField': 'class_internal_url', + 'foreignField': 'internal_url', + 'pipeline': [{'$match': {'external_code':str(df['formation_code_externe'].values[n])}}, + {'$project': {'title': 1, }}], + 'as': 'myclass_collection' + } + } + ] + + print(" ##### myquery GetSessionFormation = " + str(check_class_session_query)) + + real_class_internal_url = "" + + for check_class_session_retval in MYSY_GV.dbname['session_formation'].aggregate(check_class_session_query): + if ('myclass_collection' in check_class_session_retval.keys() and len(check_class_session_retval['myclass_collection']) > 0): + real_class_internal_url = check_class_session_retval['class_internal_url'] + + if( str(real_class_internal_url) == ""): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : " + str( + n+2) + ": Le code externe de la formation et le code de la session ne correspondent pas .") + return False, "Ligne : " + str(n+2) + ": Le code externe de la formation et le code de la session ne correspondent pas." + + + mydata['class_internal_url'] = real_class_internal_url + + + modefinancement = "" + if ("modefinancement" in df.keys()): + if (str(df['modefinancement'].values[n])): + modefinancement = str(df['modefinancement'].values[n]) + mydata['modefinancement'] = modefinancement + + + opco = "" + if ("opco" in df.keys()): + if (str(df['opco'].values[n])): + opco = str(df['opco'].values[n]) + mydata['opco'] = opco + + adresse = "" + if ("adresse" in df.keys()): + if (str(df['adresse'].values[n])): + adresse = str(df['adresse'].values[n]) + mydata['adresse'] = adresse + + code_postal = "" + if ("code_postal" in df.keys()): + if (str(df['code_postal'].values[n])): + code_postal = str(df['code_postal'].values[n]) + mydata['code_postal'] = code_postal + + ville = "" + if ("ville" in df.keys()): + if (str(df['ville'].values[n])): + ville = str(df['ville'].values[n]) + mydata['ville'] = ville + + pays = "" + if ("pays" in df.keys()): + if (str(df['pays'].values[n])): + pays = str(df['pays'].values[n]) + mydata['pays'] = pays + + + """" + Gestion du client de rattachement/ + Avec l'email et le nom, on va aller recuperer l'_id du client + """ + client_rattachement_email = "" + if ("client_rattachement_email" in df.keys()): + if (str(df['client_rattachement_email'].values[n])): + client_rattachement_email = str(df['client_rattachement_email'].values[n]) + + + client_rattachement_nom = "" + if ("client_rattachement_nom" in df.keys()): + if (str(df['client_rattachement_nom'].values[n])): + client_rattachement_nom = str(df['client_rattachement_nom'].values[n]) + + local_client_retval_qry = {'email':str(client_rattachement_email), 'nom':str(client_rattachement_nom), + 'valide':'1', 'locked':'0', 'partner_recid' :str(partner_recid)} + + local_client_retval_count = MYSY_GV.dbname['partner_client'].count_documents(local_client_retval_qry) + + if( local_client_retval_count > 1 ): + mycommon.myprint( + str(inspect.stack()[0][3]) +"Ligne : "+str(n+2) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email)) + return False, "Ligne : "+str(n+2) +". Plusieurs clients correspondent aux critère de nom :"+str(client_rattachement_nom)+" et email : "+str(client_rattachement_email) + + if (local_client_retval_count < 1): + mycommon.myprint( + str(inspect.stack()[0][3]) + "Ligne : "+str(n+2) +". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email)) + return False, "Ligne : "+str(n+2) +". Aucun client ne repond aux critères de nom :" + str( + client_rattachement_nom) + " et email : " + str(client_rattachement_email) + + local_client_retval_data = MYSY_GV.dbname['partner_client'].find_one(local_client_retval_qry) + if( local_client_retval_data is not None ): + mydata['client_rattachement_id'] = local_client_retval_data['_id'] + + + mydata['status'] = str(df['status'].values[n]).strip() + if( str(mydata['status']) != "0" and str(mydata['status']) != "1" and str(mydata['status']) != "2"): + mycommon.myprint( + str(inspect.stack()[0][3]) + " Le champs 'status' de ligne " + str(n) + " est incorrecte. Valeurs acceptées : 0,1,2") + return False, " Le champs status de la ligne " + str(n) + " est incorrecte. Valeurs acceptées : 0,1,2" + + + if( str(df['status'].values[n]).strip() == "1"): + mydata['inscription_validation_date'] = str(datetime.now().strftime("%d/%m/%Y %H:%M:%S")) + + + + + local_price = str(df['prix'].values[n]).strip() + local_status, new_price = mycommon.IsFloat(local_price) + if( local_status is False ): + mycommon.myprint( + str(inspect.stack()[0][ 3]) + " Le champs 'prix' de ligne " + str( n) + " est incorrecte.") + return False, " Le champs prix de ligne " + str(n) + " est incorrecte. " + + mydata['price'] = local_price + + + clean_dict = {k: mydata[k] for k in mydata if ( str(mydata[k]) != "nan") } + + print( "#### clean_dict ", clean_dict) + status, retval = AddStagiairetoClass(clean_dict) + + if( status is False ): + return status, retval + + print(str(total_rows)+" participants ont été inserés") + + return True, str(total_rows)+" participants ont été inserées / Mises à jour" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False, "Impossible d'importer les participants en masse " + + + + + + + """ Cette fonction permet d'imprimer/telecharger la fichier d'un inscrit à une session. Cette fonction va utiliser un template pour imprimer le modele diff --git a/Log/log_file.log b/Log/log_file.log index a65b136..0e7b94f 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -1763001,3 +1763001,1040 @@ INFO:root:2023-08-19 15:32:06.704175 : Security check : IP adresse '127.0.0.1' INFO:root:2023-08-19 15:32:06.709288 : Security check : IP adresse '127.0.0.1' connected INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 15:32:06] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 15:32:06] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:33:32.809284 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 17:33:32.810412 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 17:33:32.811285 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 17:33:32.811285 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 17:33:32.811285 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 17:33:55.789996 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 17:33:55.789996 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 17:33:55.791019 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 17:33:55.791019 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 17:33:55.791019 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 17:34:07.198589 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:07.199964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:07.203385 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:07] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:07] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:07.876071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:07.878082 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.196228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.201474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.204026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.209712 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.218569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.221985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.226728 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.234958 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.238237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.244261 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.258558 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.280563 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.289557 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.296558 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.303765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.309841 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.312840 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.317382 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:08.321799 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:08.340215 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:08] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:11.925095 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:11] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:12.079498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:12.084038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:12.088105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:12.092613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:12.101550 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:12.149368 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:12] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:34:15.007737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:15.010851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:15.014019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:34:15.017308 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:34:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:35:44.707811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:35:44.711827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:35:44.715834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:35:44.721301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:44] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:35:48.515777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:35:48.518811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:35:48.522823 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:35:48.526251 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:48] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:35:48] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:53.140242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:53.142462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:53.145852 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:53] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:53] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:53] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:53.697160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:53.698170 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:53] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.063597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.068174 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.071669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.075107 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.080140 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.084331 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.090641 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.093868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.096859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.102574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.107200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.112557 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.115582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.118568 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.124837 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.127950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.134379 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.138699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.143202 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.145224 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.774326 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.778431 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.782701 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:39:54.787966 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.794364 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:54.874123 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:54] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:39:59.504062 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:39:59] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:40:01.524516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:40:01.528255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:40:01.531255 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:40:05.526442 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:40:05.531374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:40:05.534210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:40:05.537229 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:40:05.544573 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:05] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:05] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:40:06.552788 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:40:06] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:43:09.447719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:43:09.451300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:43:09.453501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:43:09.456771 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:43:09] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:43:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:43:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:43:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:35.626646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:35.629968 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:35.633664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:35] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:35.638735 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:45.208939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:45.212281 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:45.214805 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:45] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:45.222328 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:45] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:45] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:45.346366 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:45.349777 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:45.352788 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:45.357032 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:45] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:45] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:45] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:45] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:55.612609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:55.616626 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:55.621454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:55] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:55.627481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:58.245986 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:58.249489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:58.252906 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:44:58.255548 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:58] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:58.261747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:58] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:44:59.354433 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:44:59] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 17:46:01.699029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:46:01.701572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:46:01.704160 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 17:46:01.708702 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:46:01] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:46:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:46:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 17:46:01] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:01:41.653811 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:01:41.658298 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:01:41] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:01:41.669198 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:01:41.674020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:01:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:01:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:01:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:05:06.416760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:06.421460 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:06.424482 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:06.429912 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:05:12.193912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:12.204643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:12.206637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:12.212150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:12] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:05:15.268572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:15.273121 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:15.276250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:15.283151 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:15] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:05:15.290680 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:15] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:05:16.420417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:16] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:05:26.433443 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:26.439553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:26] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:26] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:05:39.579268 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:05:39.587154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:39] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:05:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:10.059984 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:10.064165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:10.068685 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:10] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:17.503882 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:17.509895 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:17.514201 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:17] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:20.644816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:20.650184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:20.652181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:20.658231 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:20.664588 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:20] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:20] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:20] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:20] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:21.711118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:21] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:23.454291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:23.461777 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:23] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:23] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:31.986721 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:31.997856 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:49.386809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:49.390910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:49] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:49] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:49.923846 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:49.926763 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:49] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:49] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:50.424464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:50.428753 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:50] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:50] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:06:50.473625 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:06:50.478133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:50] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:06:50] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:07:38.824036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:38.829691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:38.835719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:38] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:07:42.854226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:42.859319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:42.865745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:42] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:07:47.460737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:47.465181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:47.472927 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:07:47.478168 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:47.483187 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:47] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:47] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:47] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:07:48.748530 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:48] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:07:51.367838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:51.372313 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:51] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:51] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:07:58.023632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:07:58.026521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:58] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:07:58] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:08:50.376042 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:08:50.381040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:08:50.387656 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:08:50] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:08:50] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:08:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:08:54.151039 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:08:54.155057 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:08:54] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:08:54] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:09:36.731412 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:09:36.734872 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:09:36.740066 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:09:36] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:09:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:09:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:09:47.992717 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:09:48.000125 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:09:48] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:09:48] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:11:07.764970 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:11:07.765973 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:11:07.765973 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:11:07.765973 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:11:07.765973 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:11:48.251273 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:11:48.251273 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:11:48.252280 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:11:48.252280 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:11:48.252280 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 18:11:51.101994 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:11:51.106718 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:11:51] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:11:51.113422 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:11:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:11:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:12:20.164051 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:12:20.167049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:12:20.171048 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:20] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:20] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:20] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:12:32.545441 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:12:32.548439 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:12:53.031630 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:12:53.035718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:12:53.038999 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:53] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:12:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:13:03.358814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:13:03.363963 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:13:03] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:13:03] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:14:46.102418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:14:46.105429 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:14:46] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:14:46] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:15:08.221344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:15:08.225347 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:15:08] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:15:08] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:19:07.068563 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:19:07.068563 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:19:07.068563 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:19:07.068563 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:19:07.068563 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:20:06.244248 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:20:06.244248 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:20:06.244248 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:20:06.244248 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:20:06.244248 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\prj_common.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:20:48.156229 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:20:48.156229 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:20:48.156229 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:20:48.156229 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:20:48.156229 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 18:20:48.192210 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:20:48.194289 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:20:48] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:20:48] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:25:36.368458 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:25:36.372455 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:25:36.376454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:36] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:25:42.126998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:25:42.130202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:25:42.136816 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:25:42.144360 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:42] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:25:42.147847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:42] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:42] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:25:43.340996 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:43] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:25:47.279757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:25:47.282982 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:25:47] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:28:39.337892 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:28:39.341892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:28:39] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:28:39.347887 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:28:39.351895 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:28:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:28:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:28:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:31:34.352150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:31:34.357193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:31:34.362658 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:31:34] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:31:34.366300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:31:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:31:34] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:31:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:33.425013 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:33:33.429392 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:33:33.433592 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:33] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:33.439664 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:37.076253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:33:37.079806 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:37.087488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:37.091442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:37] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:37.097526 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:37] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:37] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:38.234580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:38] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:33:40.271327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:33:40.274117 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:40] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:33:40] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:34:41.525991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:34:42] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:34:46.415177 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:34:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:34:46.471122 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:34:46.473810 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:34:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:34:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:34:46.482373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:34:46] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:35:00.818349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:35:00.822372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:35:00] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:35:00] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:35:08.442387 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:35:08.444391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:35:08] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:35:08] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:38:38.284989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:38:38.288148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:38:38.290200 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:38:38] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:38:38.295741 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:38:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:38:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:38:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:39:06.119813 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:06.124814 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:06.128343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:06.132337 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:39:09.030487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:09.034699 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:09.037838 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:09.040299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:39:09.048296 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:09] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:09] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:09] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:09] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:39:10.178351 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:10] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:39:43.281299 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:44] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:39:46.103703 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:39:46.156967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:46.160567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:39:46.164110 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:46] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:39:46] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:06.869092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:06.872815 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:06.876501 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:06.880722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:13.258632 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:13.261970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:13.266956 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:13] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:13.274336 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:13] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:17.935736 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:17.939094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:17.943127 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:17.945759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:17.950519 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:17] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:17] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:19.119373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:19] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:47.990950 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:48] "POST /myclass/api/AddStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:50.982029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:42:51.032964 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:51.037449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:42:51.041444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:51] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:51] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:42:51] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:43:03.315494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:43:03.318621 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:43:03] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:43:03] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:44:04.970615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:44:04.972611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:44:04.975614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:44:04.978838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:44:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:44:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:44:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:44:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 18:50:49.560226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 18:50:49.563390 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:50:49] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 18:50:49] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:53:47.159447 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:53:47.160931 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:53:47.160931 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:53:47.160931 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:53:47.160931 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Session_Formation.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:55:28.365292 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:55:28.365292 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:55:28.365292 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:55:28.365292 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:55:28.365292 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:55:54.064084 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:55:54.064084 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:55:54.064084 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:55:54.064084 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:55:54.064084 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 18:56:15.727799 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 18:56:15.727799 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 18:56:15.728800 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 18:56:15.728800 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 18:56:15.728800 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:17:16.917095 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:17:16.918099 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:17:16.918099 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:17:16.918099 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:17:16.918099 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:17:26.892603 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:17:26.893601 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:17:26.893601 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:17:26.893601 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:17:26.893601 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 19:17:26.979789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:26.982778 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:26.985789 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:26.989897 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:26.994897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:17:26.999899 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:27.001924 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:17:32.369798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:32.373477 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:32.375529 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:17:34.533673 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:34] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:17:49.218985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:49.222038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:17:49.225058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:17:51.235784 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:17:51] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:21:02.579918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:02.584831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:02.587850 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:02.591851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:21:55.578801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:55.581803 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:55.584798 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:55.588968 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:55] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:21:56.861524 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:56.863556 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:56.867562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:21:56.871552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:21:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:22:01.958250 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:22:01.961366 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:01] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:22:01.965975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:22:01.971435 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:01] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:01] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:22:02.079597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:22:02.082731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:22:02.084737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:22:02.088408 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:02] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 19:22:22.910308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:22:23.779550 : AddStagiairetoClass_mass_for_many_session - La valeur 'session_id' n'est pas presente dans liste +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:22:23] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:23:13.277020 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:23:13.277020 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:23:13.277020 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:23:13.277020 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:23:13.277020 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:23:54.633160 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:23:54.634160 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:23:54.634160 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:23:54.634160 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:23:54.634160 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 19:23:59.427602 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:24:00.026081 : AddStagiairetoClass_mass_for_many_session -name 'session_id' is not defined - ERRORRRR AT Line : 1823 +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:24:00] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:25:02.735622 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:25:02.735622 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:25:02.735622 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:25:02.735622 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:25:02.735622 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 19:25:04.605486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 19:25:05.115593 : AddStagiairetoClass_mass_for_many_sessionLigne : 0. Aucun client ne repond aux critères de nom :cherif et email : client@client.fr +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 19:25:05] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:27:03.343958 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:27:03.343958 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:27:03.343958 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:27:03.343958 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:27:03.343958 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:27:59.219489 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:27:59.220467 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:27:59.220467 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:27:59.220467 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:27:59.220467 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 19:29:43.731712 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 19:29:43.732723 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 19:29:43.732723 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 19:29:43.732723 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 19:29:43.732723 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 20:23:57.361948 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 20:23:57.363065 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 20:23:57.364266 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 20:23:57.364266 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 20:23:57.364266 : ++ LMS_BAS_URL mysy-training.com/ ++ +INFO:werkzeug:WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://localhost:5001 +INFO:werkzeug:Press CTRL+C to quit +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 20:24:06.686303 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 20:24:06.686303 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 20:24:06.686303 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 20:24:06.686303 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 20:24:06.687307 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 20:24:06.804232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:06.806702 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:06.808696 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:06.813268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:24:06.829291 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:24:10.223801 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:10.226742 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:10] "POST /myclass/api/Get_Given_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:10] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:24:31.668762 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:31.672785 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:31] "POST /myclass/api/Get_Given_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:31] "POST /myclass/api/Get_List_Entity_Contact/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:24:52.592054 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:52.594057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:52.598790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:52.601974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:52] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:24:56.988480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:24:57.565094 : AddStagiairetoClass - Creation partner account : Le champ 'class_external_code' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:24:57] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-19 20:27:20.260691 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-19 20:27:20.260691 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-19 20:27:20.262042 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-19 20:27:20.262042 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-19 20:27:20.262042 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 109-989-239 +INFO:root:2023-08-19 20:27:25.244042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:28] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:27:28.268619 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:27:41.592261 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:27:41.595810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:27:41.598024 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:41] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:27:41.605612 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:41] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:41] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:27:41.712401 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:27:41.715417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:27:41.719399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:27:41.722640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:41] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:41] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:27:54.215408 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:27:54.218431 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:54] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:27:54] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:28:12.777533 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:28:12.780868 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:12] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:12] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:28:38.474129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:28:38.476561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:28:38.479808 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:28:38.487002 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:28:38.603903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:28:38.606921 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:28:38.608920 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:28:38.612936 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:38] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:28:38] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:31:49.509810 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:31:49.513809 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:31:49.517315 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:31:49] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:31:49.523012 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:31:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:31:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:31:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:32:03.307089 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:32:03.310290 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:32:03.314332 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:32:03.316412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:32:03.321534 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:03] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:03] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:03] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:03] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:32:04.377413 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:04] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:32:39.959394 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:32:39.962390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:32:39.966395 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:39] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:32:42.341813 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:32:42.399492 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:32:42] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:33:10.930442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:10] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:33:12.924345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:33:12.927374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:33:12.931378 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:12] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:33:12.936162 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:12] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:33:16.218420 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:33:16.221597 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:33:16.226672 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:33:16.229821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:16] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:33:16.235121 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:16] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:16] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:16] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:33:17.289449 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:33:17.810075 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:33:17] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:08.158496 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:08] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:10.137185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:10.140183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:10.144265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:10.147484 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:10] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:15.420843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:15] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:17.214298 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:17.217302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:17.220252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:17.223615 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:17] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:33.397069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:33] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:35.276648 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:35.279880 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:35.285861 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:35] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:35.291226 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:35] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:35] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:35] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:39.537489 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:39.540681 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:39.543236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:39.548308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:39.554582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:39] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:39] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:39] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:34:40.615940 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:34:40.623184 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:34:40] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:35:13.124669 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:35:13.161858 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-19 20:35:13.162857 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:13] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:35:13.352706 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:35:13.535019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:35:13.538052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:35:13.542049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:13] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:35:25.653930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:35:25.656670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-19 20:35:25.659669 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-19 20:35:30.510923 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [19/Aug/2023 20:35:30] "POST /myclass/api/GetAllValideSessionPartner_List_filter_like/ HTTP/1.1" 200 - diff --git a/Session_Formation.py b/Session_Formation.py index 490d27b..702add3 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -1714,3 +1714,4 @@ def Add_Update_SessionFormation_mass_for_many_class(file=None, Folder=None, dict exc_type, exc_obj, exc_tb = sys.exc_info() mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) return False, "Impossible d'importer les sessions de formation en masse " + diff --git a/main.py b/main.py index 42eb031..880bbad 100644 --- a/main.py +++ b/main.py @@ -2227,6 +2227,30 @@ def AddStagiairetoClass_mass(): return jsonify(status=localStatus, message=message) + +""" +API d'import en masse de stagiaire avec pour plusieurs sessions et formations differentes +""" +@app.route('/myclass/api/AddStagiairetoClass_mass_for_many_session/', methods=['POST','GET']) +@crossdomain(origin='*') +def AddStagiairetoClass_mass_for_many_session(): + # On recupere le corps (payload) de la requete + payload = mycommon.strip_dictionary (request.form.to_dict()) + print(" ### AddStagiairetoClass_mass_for_many_session payload = ",payload) + #print(request.files) + + if request.method == 'POST': + # Create variable for uploaded file + f = request.files['File'] + localStatus, message = inscription.AddStagiairetoClass_mass_for_many_session(f, app.config['UPLOAD_FOLDER'], payload) + #status, retval = cm.add_class_mass(f, app.config['UPLOAD_FOLDER'], payload) + + return jsonify(status=localStatus, message=message) + + + + + """ API d'import en masse des sessions de formation """ diff --git a/prj_common.py b/prj_common.py index ed35d57..0470fe9 100644 --- a/prj_common.py +++ b/prj_common.py @@ -2880,7 +2880,14 @@ def GetAttendeeDetail_perSession(diction): qry_filter = {'session_id':str(diction['session_id']),'email':str(diction['attendee_email']), 'class_internal_url':str(diction['internal_url']),} + """" + Verification qu'il n'y a q'une seule inscription pour ce critère + """ + qry_filter_count = MYSY_GV.dbname['inscription'].count_documents(qry_filter) + if( qry_filter_count > 1 ): + myprint(str(inspect.stack()[0][3]) + " - Données d'inscription incohérentes. il y a plus d'une inscription pour les critère "+str(qry_filter)) + return False, "Données d'inscription incohérentes" pipe_qry = ([{'$match':qry_filter}, @@ -2917,6 +2924,7 @@ def GetAttendeeDetail_perSession(diction): 'class_internal_url':str(diction['internal_url']),}) """ + for local_Insc_retval in MYSY_GV.dbname['inscription'].aggregate(pipe_qry) : print(" ### local_Insc_retval == ", local_Insc_retval) @@ -3055,6 +3063,7 @@ def GetAttendeeDetail_perSession(diction): RetObject.append(JSONEncoder().encode(my_retrun_dict)) + return True, RetObject