From 2f8f09607bb18b8e7ae8153fc86923f53967a4ac Mon Sep 17 00:00:00 2001 From: cherif Date: Mon, 21 Aug 2023 15:13:38 +0200 Subject: [PATCH] 21/08/23 - 15h --- .idea/workspace.xml | 24 +- GlobalVariable.py | 6 +- Inscription_mgt.py | 367 ++++- Log/log_file.log | 2801 +++++++++++++++++++++++++++++++++++++ Session_Formation.py | 21 +- prj_common.py | 26 +- ressources_humaines.js.py | 272 ++++ 7 files changed, 3477 insertions(+), 40 deletions(-) create mode 100644 ressources_humaines.js.py diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 65ecd42..2510bac 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,8 +1,10 @@ - + + + @@ -70,13 +72,6 @@ @@ -428,7 +430,6 @@ - @@ -453,6 +454,7 @@ - \ No newline at end of file diff --git a/GlobalVariable.py b/GlobalVariable.py index 065fbdd..9385bb8 100644 --- a/GlobalVariable.py +++ b/GlobalVariable.py @@ -461,6 +461,8 @@ Pour les session, on definit les étapes suivantes : SESSION_ETAPE = ['-1', '0', '1', '2', '3', '4', '5'] - - +""" +Les profils des ressources humaines autorisé +""" +RESSOURCE_PROFIL = ['enseignant', 'cadre', 'employe', 'autre'] diff --git a/Inscription_mgt.py b/Inscription_mgt.py index 4ac0162..e140489 100644 --- a/Inscription_mgt.py +++ b/Inscription_mgt.py @@ -51,6 +51,7 @@ def AddStagiairetoClass(diction): 'class_internal_url', 'session_id', 'employeur', 'status', 'price', 'inscription_validation_date', 'token', 'client_rattachement_id', 'adresse', 'code_postal', 'ville', 'pays', ] + incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -162,7 +163,7 @@ def AddStagiairetoClass(diction): if ("email" in diction.keys()): if diction['email']: mydata['email'] = str(diction['email']).strip() - regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b' + regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' if (not re.fullmatch(regex, str(diction['email']) ) ): mycommon.myprint( str(inspect.stack()[0][3]) + " l'adresse email "+str(diction['email'])+" est invalide") @@ -732,7 +733,7 @@ def GetAllClassStagiaire(diction): RetObject = [] val_tmp = 0 - print(" #### myquery 01= "+str(myquery)) + print(" #### myquery 01111 = "+str(myquery)) for retval in coll_session.find(myquery): @@ -1624,6 +1625,13 @@ def AddStagiairetoClass_mass(file=None, Folder=None, diction=None): mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) mydata['email'] = str(df['email'].values[n]) + regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' + if (not re.fullmatch(regex, str(df['email'].values[n]))): + mycommon.myprint( + str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]) + " est invalide") + return False, " l'adresse email -" + str(df['email'].values[n]) + "- est invalide" + + mydata['session_id'] = str(session_data['_id']) mydata['token'] = str(my_token) @@ -1752,6 +1760,12 @@ Cette fonction permet d'importer un fichier excel pour les stagiaire de plusieur /!\ : 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. +update du 21/08/23 : +Pour eviter les imports partiels du fichier, on va créer une fonction qui va faire les controles. +Si cette fonction est ok, alors on lance la fonction d'import. + +Elle fera a peu pret les meme controle qui existe dans la fonction d'import actuelle. + """ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=None): try: @@ -1797,6 +1811,9 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No 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") @@ -1806,6 +1823,18 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No #print(" Lecture du fichier : "+saved_file) nb_line = 0 + """" + update du 21/08/23 : Controle de l'integrité du fichier + """ + local_controle_status, local_controle_message = Controle_AddStagiairetoClass_mass_for_many_session(saved_file, Folder, + diction) + + if (local_controle_status is False): + return local_controle_status, local_controle_message + + print(" #### local_controle_message = ", local_controle_message) + + df = pd.read_csv(saved_file, encoding='utf8', on_bad_lines='skip', sep=';', encoding_errors='ignore') # Dictionnaire des champs utilisables @@ -1863,6 +1892,11 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No mydata['employeur'] = str(df['employeur'].values[n]) mydata['telephone'] = str(df['telephone'].values[n]) mydata['email'] = str(df['email'].values[n]) + regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' + if (not re.fullmatch(regex, str(df['email'].values[n]))): + mycommon.myprint( + str(inspect.stack()[0][3]) + " l'adresse email " + str(df['email'].values[n]) + " est invalide") + return False, " l'adresse email -" + str(df['email'].values[n]) + "- est invalide" mydata['token'] = str(my_token) @@ -1871,7 +1905,7 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No - formation code externe - partner_owner_recid """ - qry = {'external_code':str(class_external_code), 'valide':'-51', 'locked':'0', 'partner_owner_recid':str(partner_recid)} + qry = {'external_code':str(class_external_code), 'valide':'1', 'locked':'0', 'partner_owner_recid':str(partner_recid)} print(" ### qry = ", qry) myclass_data_count = MYSY_GV.dbname['myclass'].count_documents({'external_code':str(class_external_code), 'valide':'1', 'locked':'0', 'partner_owner_recid':str(partner_recid)}) @@ -2068,6 +2102,286 @@ def AddStagiairetoClass_mass_for_many_session(file=None, Folder=None, diction=No +""" +Fonction de controle du fichier +""" +def Controle_AddStagiairetoClass_mass_for_many_session(saved_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" + + + + 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]) + print(" contole du mail = ", mydata['email']) + regex = r'\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,7}\b' + if (not re.fullmatch(regex, str( mydata['email']) )): + mycommon.myprint( + str(inspect.stack()[0][3]) + " l'adresse email " + str(mydata['email']) + " est invalide") + return False, " l'adresse email -" + str(mydata['email']) + "- est invalide" + + mydata['token'] = str(my_token) + + """ + Recuperation de l'internal url de la formation a partir de la cle + - formation code externe + - partner_owner_recid + """ + qry = {'external_code':str(class_external_code), 'valide':'1', 'locked':'0', 'partner_owner_recid':str(partner_recid)} + print(" ### qry = ", qry) + myclass_data_count = MYSY_GV.dbname['myclass'].count_documents({'external_code':str(class_external_code), 'valide':'1', 'locked':'0', + 'partner_owner_recid':str(partner_recid)}) + + if( myclass_data_count != 1 ): + 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." + + + myclass_data = MYSY_GV.dbname['myclass'].find_one({'external_code':str(class_external_code), 'valide':'1', 'locked':'0', + 'partner_owner_recid':str(partner_recid)}) + + mysession_count_qry = {'class_internal_url': str(myclass_data['internal_url']), 'valide': '1', + 'partner_owner_recid': str(partner_recid), 'code_session':str(df['code_session'].values[n]) } + + print(" ### mysession_count_qry = ", qry) + + mysession_count = MYSY_GV.dbname['session_formation'].count_documents(mysession_count_qry) + + if( mysession_count != 1): + 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 (2).") + return False, "Ligne : " + str( + n + 2) + ": Le code externe de la formation et le code de la session ne correspondent pas (2)." + + mysession_data = MYSY_GV.dbname['session_formation'].find_one(mysession_count_qry) + + + + mydata['session_id'] = str(mysession_data['_id']) + mydata['class_internal_url'] = str(mysession_data['class_internal_url']) + + """ + Recuperation de l''_id' de la session à partir de la clé + - formation code externe + - code_session + - partner_owner_recid + """ + + """ + 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 + """ + + + + + 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]) and str(df['client_rattachement_email'].values[n]) != "nan"): + 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]) and str(df['client_rattachement_nom'].values[n]) != "nan" ): + client_rattachement_nom = str(df['client_rattachement_nom'].values[n]) + if (client_rattachement_email and client_rattachement_nom): + 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) + + + return True, str(total_rows)+" participants dans le fichier" + + 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 de controler le fichier des participants a importer en masse " @@ -3604,7 +3918,7 @@ def Update_Stagiaire_Image(file_img=None, Folder=None, diction=None): local_retval = MYSY_GV.dbname['inscription'].find_one({'class_internal_url':str(class_internal_url), 'session_id':str(session_id), 'email':str(email) }) if( local_retval is None): - mycommon.myprint(str(inspect.stack()[0][3]) + " : Le stagiaire "+str(email)+" n'est pas reconnu pour la session "+str(str(session_id)) ) + mycommon.myprint(str(inspect.stack()[0][3]) + " : Le stagiaire "+str(email)+" n'est pas reconnu pour la session bb"+str(str(session_id)) ) return False, " Le stagiaire n'est pas reconnu " @@ -3685,7 +3999,7 @@ def getRecodedStagiaireImage_from_front(diction=None): 'email': str(email)}) if (local_retval is None): mycommon.myprint(str(inspect.stack()[0][3]) + " : Le stagiaire " + str( - email) + " n'est pas reconnu pour la session " + str(str(session_id))) + email) + " n'est pas reconnu pour la session aa" + str(str(session_id))) return False, " Le stagiaire n'est pas reconnu " @@ -3792,7 +4106,7 @@ On y ajoute la formation concernée """ def Get_Statgaire_List_Partner_with_filter(diction): try: - field_list = ['token', 'class_internal_url', 'session_id', 'status', 'email', 'nom', 'class_title'] + field_list = ['token', 'class_internal_url', 'code_session', 'status', 'email', 'nom', 'class_title', 'code_session'] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -3830,6 +4144,35 @@ def Get_Statgaire_List_Partner_with_filter(diction): + """ + Etape 1 : si on a le champ 'code session' saisie par l'utilisateur, + alors on va commencer par aller cherche toutes les session avec un regex de la valeur saisie filter sur le partner_recid + + """ + filt_session_id = {} + list_session_id = [] + if ("code_session" in diction.keys()): + filt_code_session = {'code_session': {'$regex': str(diction['code_session']), "$options": "i"}} + """qry_list_session_id = { { '$and' :[ {'code_session': {'$regex': str(diction['code_session']), "$options": "i"}}, + {'partner_owner_recid': str(partner_recid)} ]}, {'_id':1}} + """ + + qry_list_session_id = {"$and": [{'code_session': {'$regex': str(diction['code_session']), "$options": "i"}}, + {'partner_owner_recid': str(partner_recid)}]} + + print(" ### qry_list_session_id aa = ", qry_list_session_id) + list_session_id_count = MYSY_GV.dbname['session_formation'].count_documents(qry_list_session_id) + + if( list_session_id_count <= 0 ): + # Aucune session + return True, [] + + for val in MYSY_GV.dbname['session_formation'].find(qry_list_session_id): + list_session_id.append(str(val['_id'])) + + print(" ### liste des Id des sessions eligible list_session_id = ", list_session_id) + filt_session_id = {'session_id': {'$in': list_session_id, }} + filt_class_title = {} if ("class_title" in diction.keys()): filt_class_title = {'title': {'$regex': str(diction['class_title']), "$options": "i"}} @@ -3839,10 +4182,6 @@ def Get_Statgaire_List_Partner_with_filter(diction): filt_class_internal_url = { 'class_internal_url': {'$regex': str(diction['class_internal_url']), "$options": "i"}} - filt_session_id= {} - if ("session_id" in diction.keys()): - filt_session_id = {'session_id': {'$regex': str(diction['session_id']), "$options": "i"}} - filt_email = {} if ("email" in diction.keys()): filt_email = {'email': {'$regex': str(diction['email']), "$options": "i"}} @@ -3883,6 +4222,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): val['email'] = retVal['email'] + if( "modefinancement" in retVal.keys()): val['modefinancement'] = retVal['modefinancement'] else: @@ -3894,7 +4234,6 @@ def Get_Statgaire_List_Partner_with_filter(diction): val['opco'] = "" - if ("employeur" in retVal.keys()): val['employeur'] = retVal['employeur'] else: @@ -3917,6 +4256,7 @@ def Get_Statgaire_List_Partner_with_filter(diction): count_session = MYSY_GV.dbname['session_formation'].count_documents(local_qry) + client_rattachement_id = "" client_rattachement_nom = "" # Si il a un client rattacher, recuperation des information du client @@ -3947,6 +4287,11 @@ def Get_Statgaire_List_Partner_with_filter(diction): #print(" ### qry 2 =", qry2) session_retval = MYSY_GV.dbname['session_formation'].find_one({'_id':ObjectId(str(retVal['session_id'])), 'valide':'1'}) + if ("code_session" in session_retval.keys()): + val['code_session'] = str(session_retval['code_session']) + else: + val['code_session'] = "" + if ("date_debut" in session_retval.keys()): val['date_du'] = str(session_retval['date_debut'])[0:10] diff --git a/Log/log_file.log b/Log/log_file.log index 975e6b8..0fe1ef3 100644 --- a/Log/log_file.log +++ b/Log/log_file.log @@ -1767547,3 +1767547,2804 @@ INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/Get_Partne INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - INFO:werkzeug:127.0.0.1 - - [20/Aug/2023 23:56:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:11:29.793472 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:11:29.794482 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:11:29.795476 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:11:29.795476 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:11:29.795476 : ++ 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-21 10:11:51.667986 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:11:51.667986 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:11:51.667986 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:11:51.667986 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:11:51.669322 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 10:12:06.753600 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:06.754599 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:06.757069 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:06] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:06] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:07] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:07.603381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:07.605400 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:07] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.003650 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.004646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.010884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.016284 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.021556 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.026371 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.026371 : La session de connexion n'est pas valide +INFO:root:2023-08-21 10:12:09.028997 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.037816 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.324380 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.331318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.332307 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.339284 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.346690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.349592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.351616 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.357847 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.360478 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.649319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.650317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.652318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.657318 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.665949 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.668947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.672262 : La session de connexion n'est pas valide +INFO:root:2023-08-21 10:12:09.673266 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.680047 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.965799 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:12:09.966793 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:12:09.973576 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:12:09] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:01.533309 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:01.535319 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:01.538791 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:01] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:01] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:01] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.388832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.390832 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.774523 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.778520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.782498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.787637 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.787637 : La session de connexion n'est pas valide +INFO:root:2023-08-21 10:13:02.791562 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.796753 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.797765 : La session de connexion n'est pas valide +INFO:root:2023-08-21 10:13:02.801197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.808195 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.812192 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.812192 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.819272 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.819272 : La session de connexion n'est pas valide +INFO:root:2023-08-21 10:13:02.821745 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.828962 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.833572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.835860 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.839167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.841976 : La session de connexion n'est pas valide +INFO:root:2023-08-21 10:13:02.844388 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.848163 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.850727 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.855464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.858026 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.865253 : La session de connexion n'est pas valide +INFO:root:2023-08-21 10:13:02.866120 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:02.868372 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.872534 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:02.878462 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:02] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:27.075108 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:27] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:27.239154 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:27.243126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:27.247307 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:27.252943 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:27.256955 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:27] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:27] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:27] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:27.315644 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:27] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:36.287779 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:36.290804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:36.294561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:39.164359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:39.219833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:39] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:13:49.332758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:13:49.336732 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:49] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:13:49] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:19:59.189776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:19:59.455539 : external_code = MYSY_Test_APU ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-21 10:19:59.875780 : La formation indexée (champ title) =64e31e2f06df10b2089164c8 +INFO:root:2023-08-21 10:19:59.875780 : 1 ont été indexes => title +INFO:root:2023-08-21 10:20:01.005566 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_APU +INFO:root:2023-08-21 10:20:01.122460 : external_code = MYSY_Test_OPU ==> PRATICIEN EN OLFACTOTHERAPIE +INFO:root:2023-08-21 10:20:01.439666 : La formation indexée (champ title) =64e31e3106df10b2089164f0 +INFO:root:2023-08-21 10:20:01.439666 : 1 ont été indexes => title +INFO:root:2023-08-21 10:20:01.710943 : ela_index_class_key_word 2 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_OPU +INFO:root:2023-08-21 10:20:01.767795 : add_class - Impossible d'ajouter la formation PRATICIEN EN AROMATHERAPIE INTEGRATIVE - Vous avez atteint le nombre maximum de formation autorisé +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:01] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:16.117918 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:16.121891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:16.127342 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/customers/cus_OL95ZkVJlbwWyw/payment_methods?type=card +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=type=card +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/customers/cus_OL95ZkVJlbwWyw/payment_methods?type=card response_code=200 +DEBUG:stripe:body='{\n "object": "list",\n "data": [\n {\n "id": "pm_1NYSorAbmaEugrFTuc8nPCVA",\n "object": "payment_method",\n "billing_details": {\n "address": {\n "city": null,\n "country": null,\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "email": null,\n "name": "cherif DEV",\n "phone": null\n },\n "card": {\n "brand": "visa",\n "checks": {\n "address_line1_check": null,\n "address_postal_code_check": null,\n "cvc_check": "pass"\n },\n "country": "US",\n "exp_month": 12,\n "exp_year": 2023,\n "fingerprint": "WLHU5xJ28QiE3f4x",\n "funding": "credit",\n "generated_from": null,\n "last4": "4242",\n "networks": {\n "available": [\n "visa"\n ],\n "preferred": null\n },\n "three_d_secure_usage": {\n "supported": true\n },\n "wallet": null\n },\n "created": 1690459045,\n "customer": "cus_OL95ZkVJlbwWyw",\n "livemode": false,\n "metadata": {},\n "type": "card"\n }\n ],\n "has_more": false,\n "url": "/v1/customers/cus_OL95ZkVJlbwWyw/payment_methods"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_odtxJa9r3DTuE8 message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:16] "POST /myclass/api/get_payement_mode/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:17.932474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:17.935153 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:17] "POST /myclass/api/get_product_service/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:17] "POST /myclass/api/Get_Active_Ftions_Mysy_and_Lms/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:22.904198 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_OL95ZkVJlbwWyw%27 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=query=customer%3A%27cus_OL95ZkVJlbwWyw%27 +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/invoices/search?query=customer%3A%27cus_OL95ZkVJlbwWyw%27 response_code=200 +DEBUG:stripe:body='{\n "object": "search_result",\n "data": [\n {\n "id": "in_1NYSpMAbmaEugrFTdZxQ9Gmd",\n "object": "invoice",\n "account_country": "FR",\n "account_name": "MYSY Training Technology ",\n "account_tax_ids": null,\n "amount_due": 36000,\n "amount_paid": 36000,\n "amount_remaining": 0,\n "amount_shipping": 0,\n "application": null,\n "application_fee_amount": null,\n "attempt_count": 1,\n "attempted": true,\n "auto_advance": false,\n "automatic_tax": {\n "enabled": false,\n "status": null\n },\n "billing_reason": "subscription_create",\n "charge": "ch_3NYSpMAbmaEugrFT0jVQbRar",\n "collection_method": "charge_automatically",\n "created": 1690459076,\n "currency": "eur",\n "custom_fields": null,\n "customer": "cus_OL95ZkVJlbwWyw",\n "customer_address": {\n "city": "",\n "country": "",\n "line1": null,\n "line2": null,\n "postal_code": null,\n "state": null\n },\n "customer_email": "mysytraining+dev@gmail.com",\n "customer_name": "MySy Dev Compte",\n "customer_phone": null,\n "customer_shipping": null,\n "customer_tax_exempt": "none",\n "customer_tax_ids": [],\n "default_payment_method": null,\n "default_source": null,\n "default_tax_rates": [],\n "description": null,\n "discount": null,\n "discounts": [],\n "due_date": null,\n "effective_at": 1690459076,\n "ending_balance": 0,\n "footer": null,\n "from_invoice": null,\n "hosted_invoice_url": "https://invoice.stripe.com/i/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9PTDk3cTcxNUthV2RaNDh4T1dOcHdRZURmZ2ZUaGhmLDgzMTQ2ODI302005k2yDnKr?s=ap",\n "invoice_pdf": "https://pay.stripe.com/invoice/acct_1LUUfAAbmaEugrFT/test_YWNjdF8xTFVVZkFBYm1hRXVnckZULF9PTDk3cTcxNUthV2RaNDh4T1dOcHdRZURmZ2ZUaGhmLDgzMTQ2ODI302005k2yDnKr/pdf?s=ap",\n "last_finalization_error": null,\n "latest_revision": null,\n "lines": {\n "object": "list",\n "data": [\n {\n "id": "il_1NYSpMAbmaEugrFTQEHw7Np3",\n "object": "line_item",\n "amount": 36000,\n "amount_excluding_tax": 36000,\n "currency": "eur",\n "description": "4 × DEV_SPACK_GOLD (at €90.00 / month)",\n "discount_amounts": [],\n "discountable": true,\n "discounts": [],\n "livemode": false,\n "metadata": {},\n "period": {\n "end": 1693137476,\n "start": 1690459076\n },\n "plan": {\n "id": "price_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 9000,\n "amount_decimal": "9000",\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1MT3FmAbmaEugrFTZ5vyJRcZ",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1674392794,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ6dS05BjL1cLl",\n "recurring": {\n "aggregate_usage": null,\n "interval": "month",\n "interval_count": 1,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "tax_behavior": "exclusive",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 9000,\n "unit_amount_decimal": "9000"\n },\n "proration": false,\n "proration_details": {\n "credited_items": null\n },\n "quantity": 4,\n "subscription": "sub_1NYSpMAbmaEugrFTicVGk1T3",\n "subscription_item": "si_OL97deuotFw44Z",\n "tax_amounts": [],\n "tax_rates": [],\n "type": "subscription",\n "unit_amount_excluding_tax": "9000"\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/invoices/in_1NYSpMAbmaEugrFTdZxQ9Gmd/lines"\n },\n "livemode": false,\n "metadata": {},\n "next_payment_attempt": null,\n "number": "E58073E6-0775",\n "on_behalf_of": null,\n "paid": true,\n "paid_out_of_band": false,\n "payment_intent": "pi_3NYSpMAbmaEugrFT0xAxy2Tq",\n "payment_settings": {\n "default_mandate": null,\n "payment_method_options": null,\n "payment_method_types": null\n },\n "period_end": 1690459076,\n "period_start": 1690459076,\n "post_payment_credit_notes_amount": 0,\n "pre_payment_credit_notes_amount": 0,\n "quote": null,\n "receipt_number": null,\n "rendering_options": null,\n "shipping_cost": null,\n "shipping_details": null,\n "starting_balance": 0,\n "statement_descriptor": null,\n "status": "paid",\n "status_transitions": {\n "finalized_at": 1690459076,\n "marked_uncollectible_at": null,\n "paid_at": 1690459087,\n "voided_at": null\n },\n "subscription": "sub_1NYSpMAbmaEugrFTicVGk1T3",\n "subscription_details": {\n "metadata": {}\n },\n "subtotal": 36000,\n "subtotal_excluding_tax": 36000,\n "tax": null,\n "test_clock": null,\n "total": 36000,\n "total_discount_amounts": [],\n "total_excluding_tax": 36000,\n "total_tax_amounts": [],\n "transfer_data": null,\n "webhooks_delivered_at": 1690459076\n }\n ],\n "has_more": false,\n "next_page": null,\n "url": "/v1/invoices/search"\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_KpUJqxlyoDYh1g message='Dashboard link for request' +INFO:root:2023-08-21 10:20:27.148666 : UpdataPartnerRankingClass - Le RANKING de 3 ont été mise à jour avec la valeur {'display_rank': '20', 'date_update': '2023-08-21 10:20:27.130058'} +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:27] "POST /myclass/api/createOrder/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:27.297990 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:27.300242 : Security check : IP adresse '127.0.0.1' connected +INFO:stripe:message='Request to Stripe api' method=get path=https://api.stripe.com/v1/subscriptions/sub_1NYSpMAbmaEugrFTicVGk1T3 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data= +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1NYSpMAbmaEugrFTicVGk1T3 response_code=200 +DEBUG:stripe:body='{\n "id": "sub_1NYSpMAbmaEugrFTicVGk1T3",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1690459076,\n "billing_thresholds": null,\n "cancel_at": null,\n "cancel_at_period_end": false,\n "canceled_at": null,\n "cancellation_details": {\n "comment": null,\n "feedback": null,\n "reason": null\n },\n "collection_method": "charge_automatically",\n "created": 1690459076,\n "currency": "eur",\n "current_period_end": 1693137476,\n "current_period_start": 1690459076,\n "customer": "cus_OL95ZkVJlbwWyw",\n "days_until_due": null,\n "default_payment_method": null,\n "default_source": null,\n "default_tax_rates": [],\n "description": null,\n "discount": null,\n "ended_at": null,\n "items": {\n "object": "list",\n "data": [\n {\n "id": "si_OL97deuotFw44Z",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1690459076,\n "metadata": {},\n "plan": {\n "id": "price_1MT3FLAbmaEugrFTDgw7MVgb",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 5000,\n "amount_decimal": "5000",\n "billing_scheme": "per_unit",\n "created": 1674392767,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1MT3FLAbmaEugrFTDgw7MVgb",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1674392767,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "recurring": {\n "aggregate_usage": null,\n "interval": "month",\n "interval_count": 1,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "tax_behavior": "inclusive",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 5000,\n "unit_amount_decimal": "5000"\n },\n "quantity": 3,\n "subscription": "sub_1NYSpMAbmaEugrFTicVGk1T3",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1NYSpMAbmaEugrFTicVGk1T3"\n },\n "latest_invoice": "in_1NYSpMAbmaEugrFTdZxQ9Gmd",\n "livemode": false,\n "metadata": {},\n "next_pending_invoice_item_invoice": null,\n "on_behalf_of": null,\n "pause_collection": null,\n "payment_settings": {\n "payment_method_options": null,\n "payment_method_types": null,\n "save_default_payment_method": "off"\n },\n "pending_invoice_item_interval": null,\n "pending_setup_intent": null,\n "pending_update": null,\n "plan": {\n "id": "price_1MT3FLAbmaEugrFTDgw7MVgb",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 5000,\n "amount_decimal": "5000",\n "billing_scheme": "per_unit",\n "created": 1674392767,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "quantity": 3,\n "schedule": null,\n "start_date": 1690459076,\n "status": "active",\n "test_clock": null,\n "transfer_data": null,\n "trial_end": null,\n "trial_settings": {\n "end_behavior": {\n "missing_payment_method": "create_invoice"\n }\n },\n "trial_start": null\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_EboNvFigtO7uD1 message='Dashboard link for request' +INFO:stripe:message='Request to Stripe api' method=post path=https://api.stripe.com/v1/subscriptions/sub_1NYSpMAbmaEugrFTicVGk1T3 +DEBUG:stripe:api_version=2020-08-27 message='Post details' post_data=proration_behavior=create_prorations&items[0][id]=si_OL97deuotFw44Z&items[0][price]=price_1MT3FLAbmaEugrFTDgw7MVgb&items[0][quantity]=10 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:27] "POST /myclass/api/Check_MySy_LMS_Account/ HTTP/1.1" 200 - +INFO:stripe:message='Stripe API response' path=https://api.stripe.com/v1/subscriptions/sub_1NYSpMAbmaEugrFTicVGk1T3 response_code=200 +DEBUG:stripe:body='{\n "id": "sub_1NYSpMAbmaEugrFTicVGk1T3",\n "object": "subscription",\n "application": null,\n "application_fee_percent": null,\n "automatic_tax": {\n "enabled": false\n },\n "billing_cycle_anchor": 1690459076,\n "billing_thresholds": null,\n "cancel_at": null,\n "cancel_at_period_end": false,\n "canceled_at": null,\n "cancellation_details": {\n "comment": null,\n "feedback": null,\n "reason": null\n },\n "collection_method": "charge_automatically",\n "created": 1690459076,\n "currency": "eur",\n "current_period_end": 1693137476,\n "current_period_start": 1690459076,\n "customer": "cus_OL95ZkVJlbwWyw",\n "days_until_due": null,\n "default_payment_method": null,\n "default_source": null,\n "default_tax_rates": [],\n "description": null,\n "discount": null,\n "ended_at": null,\n "items": {\n "object": "list",\n "data": [\n {\n "id": "si_OL97deuotFw44Z",\n "object": "subscription_item",\n "billing_thresholds": null,\n "created": 1690459076,\n "metadata": {},\n "plan": {\n "id": "price_1MT3FLAbmaEugrFTDgw7MVgb",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 5000,\n "amount_decimal": "5000",\n "billing_scheme": "per_unit",\n "created": 1674392767,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "price": {\n "id": "price_1MT3FLAbmaEugrFTDgw7MVgb",\n "object": "price",\n "active": true,\n "billing_scheme": "per_unit",\n "created": 1674392767,\n "currency": "eur",\n "custom_unit_amount": null,\n "livemode": false,\n "lookup_key": null,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "recurring": {\n "aggregate_usage": null,\n "interval": "month",\n "interval_count": 1,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "tax_behavior": "inclusive",\n "tiers_mode": null,\n "transform_quantity": null,\n "type": "recurring",\n "unit_amount": 5000,\n "unit_amount_decimal": "5000"\n },\n "quantity": 10,\n "subscription": "sub_1NYSpMAbmaEugrFTicVGk1T3",\n "tax_rates": []\n }\n ],\n "has_more": false,\n "total_count": 1,\n "url": "/v1/subscription_items?subscription=sub_1NYSpMAbmaEugrFTicVGk1T3"\n },\n "latest_invoice": "in_1NYSpMAbmaEugrFTdZxQ9Gmd",\n "livemode": false,\n "metadata": {},\n "next_pending_invoice_item_invoice": null,\n "on_behalf_of": null,\n "pause_collection": null,\n "payment_settings": {\n "payment_method_options": null,\n "payment_method_types": null,\n "save_default_payment_method": "off"\n },\n "pending_invoice_item_interval": null,\n "pending_setup_intent": null,\n "pending_update": null,\n "plan": {\n "id": "price_1MT3FLAbmaEugrFTDgw7MVgb",\n "object": "plan",\n "active": true,\n "aggregate_usage": null,\n "amount": 5000,\n "amount_decimal": "5000",\n "billing_scheme": "per_unit",\n "created": 1674392767,\n "currency": "eur",\n "interval": "month",\n "interval_count": 1,\n "livemode": false,\n "metadata": {},\n "nickname": null,\n "product": "prod_MZ71B8JnZPoL32",\n "tiers_mode": null,\n "transform_usage": null,\n "trial_period_days": null,\n "usage_type": "licensed"\n },\n "quantity": 10,\n "schedule": null,\n "start_date": 1690459076,\n "status": "active",\n "test_clock": null,\n "transfer_data": null,\n "trial_end": null,\n "trial_settings": {\n "end_behavior": {\n "missing_payment_method": "create_invoice"\n }\n },\n "trial_start": null\n}' message='API response body' +DEBUG:stripe:link=https://dashboard.stripe.com/test/logs/req_YxyYFAZdg0EtWB message='Dashboard link for request' +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:28] "POST /myclass/api/strip_update_subscription_qty/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:30.409631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:30.412635 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:30] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:30] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:34.150183 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:34.152738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:34.155855 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:34] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:34.163194 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:34] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:34] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:34.346321 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:34.349607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:34] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:34] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:40.106936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:40.258568 : external_code = MYSY_Test_APU ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-21 10:20:40.579070 : La formation indexée (champ title) =64e31e2f06df10b2089164c8 +INFO:root:2023-08-21 10:20:40.580063 : 1 ont été indexes => title +INFO:root:2023-08-21 10:20:40.839470 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_APU +INFO:root:2023-08-21 10:20:40.956129 : external_code = MYSY_Test_OPU ==> PRATICIEN EN OLFACTOTHERAPIE +INFO:root:2023-08-21 10:20:41.277662 : La formation indexée (champ title) =64e31e3106df10b2089164f0 +INFO:root:2023-08-21 10:20:41.277662 : 1 ont été indexes => title +INFO:root:2023-08-21 10:20:41.560039 : ela_index_class_key_word 2 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_OPU +INFO:root:2023-08-21 10:20:41.658954 : external_code = MYSY_Test_ARU ==> PRATICIEN EN AROMATHERAPIE INTEGRATIVE +INFO:root:2023-08-21 10:20:41.943257 : La formation indexée (champ title) =64e31e5906df10b2089165fb +INFO:root:2023-08-21 10:20:41.943257 : 1 ont été indexes => title +INFO:root:2023-08-21 10:20:42.210688 : ela_index_class_key_word 3 mot(s) clé(s) ont été indexés pour la formation MYSY_Test_ARU +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:42] "POST /myclass/api/add_class_mass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:48.328126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:48.412935 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:48] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:56.021497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:56] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:20:58.019757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:58.023713 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:58.032061 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:20:58.036646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:58] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:58] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:20:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:01.339925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:01] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:03.216099 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:03.220818 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:03.224823 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:03] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:03] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:03] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:11.334737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:11] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:13.310916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:13.315437 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:13.318476 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:13] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:13] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:13] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:22.925177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:22.930240 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:22.932250 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:22] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:35.932081 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:35] "POST /myclass/api/update_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:36.270520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:36] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:40.510650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:40.596690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:40] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:43.023051 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:43] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:44.808092 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:44.810435 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:44.814435 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:44] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:44] "POST /myclass/api/get_associated_class_of_partnair/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:44] "POST /myclass/api/get_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:51.222109 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:51.225559 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:51.227695 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:21:59.478750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:21:59.506449 : Add_Update_SessionFormation_mass_for_many_class : entete du fichier csv. 'client_rattachement_email' n'est pas acceptée +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:21:59] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:22:42.773864 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:22:42.804304 : Add_Update_SessionFormation - L'étape '1.0' n'est pas autorisée +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:22:42] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:23:22.025481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:22] "POST /myclass/api/Add_Update_SessionFormation_mass_for_many_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:23:22.336308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:23:22.339220 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:22] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:22] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:23:34.089624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:23:34.091709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:23:34.094660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:23:49.562088 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:23:49.564562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:23:49.567583 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:23:49] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:25:25.465470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:25.469509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:25.471883 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:25] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:25] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:25:25.481904 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:25] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:25:25.602027 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:25.604967 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:25.608700 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:25] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:25] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:25:29.917444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:29.920663 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:29.924678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:25:37.245343 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:37.248667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:25:37.254118 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:37] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:37] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:25:57.001831 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:57] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:25:57.633602 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:25:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:26:00.084236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:26:03.639252 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:26:03.656443 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:03] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:26:16.478775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:26:16.481775 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:26:16.485021 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:26:16.488497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:26:51.927903 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:26:51.930901 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:26:51.935907 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:51] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:26:51] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:28:05.830136 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:28:05.833361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:28:05.835375 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:28:05.839566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:28:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:28:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:28:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:28:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:28:11.990652 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:28:12.069989 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:28:12.071991 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:28:12.110636 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:28:12.113644 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:28:12.150302 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:28:12.153640 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:28:12.192323 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:28:12.194450 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line4@mysy.fr pour la session 64e31efa91fc36d503928322 +INFO:root:2023-08-21 10:28:12.208254 : AddStagiairetoClass l'adresse email student@mysy.fr1 est invalide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:28:12] "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-21 10:35:59.570563 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:35:59.570563 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:35:59.570563 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:35:59.570563 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:35:59.570563 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 10:36:33.296569 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:36:33.297554 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:36:33.297554 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:36:33.297554 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:36:33.297554 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 10:36:39.732148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:36:40.573771 : AddStagiairetoClass_mass_for_many_session -No columns to parse from file - ERRORRRR AT Line : 1827 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:36:40] "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-21 10:37:43.772295 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:37:43.772295 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:37:43.772295 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:37:43.772295 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:37:43.772295 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 10:38:12.107181 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:38:12.107181 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:38:12.107181 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:38:12.107181 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:38:12.107181 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 10:42:44.906925 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:42:44.907923 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:42:44.907923 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:42:44.907923 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:42:44.907923 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 10:42:53.433868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:42:54.247861 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:42:54.250863 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:42:54.291385 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:42:54.296685 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:42:54.335015 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:42:54.338019 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:42:54.371075 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:42:54.375077 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line4@mysy.fr pour la session 64e31efa91fc36d503928322 +INFO:root:2023-08-21 10:42:54.388671 : AddStagiairetoClass l'adresse email student@mysy.fr1 est invalide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:42:54] "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-21 10:46:23.590018 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:46:23.590018 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:46:23.590018 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:46:23.590018 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:46:23.590018 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 10:48:20.503651 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:48:20.503651 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:48:20.503651 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:48:20.503651 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:48:20.503651 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 10:48:38.581816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:48:39.188449 : Controle_AddStagiairetoClass_mass_for_many_session -'email' - ERRORRRR AT Line : 2213 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:48:39] "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-21 10:50:29.133039 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:50:29.133039 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:50:29.133039 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:50:29.133039 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:50:29.133039 : ++ 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-21 10:50:37.807802 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:50:37.807802 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:50:37.807802 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:50:37.807802 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:50:37.807802 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 10:51:45.579345 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:51:45.579345 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:51:45.579345 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:51:45.579345 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:51:45.579345 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 10:51:47.010227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:51:47.586338 : Controle_AddStagiairetoClass_mass_for_many_session -'email' - ERRORRRR AT Line : 2215 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:51:47] "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-21 10:53:36.477031 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:53:36.477031 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:53:36.478032 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:53:36.478032 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:53:36.478032 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 10:54:31.252387 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 10:54:31.252387 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 10:54:31.252387 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 10:54:31.252387 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 10:54:31.252387 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 10:54:36.811655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:54:37.376278 : Controle_AddStagiairetoClass_mass_for_many_session l'adresse email student@mysy.fr1 est invalide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:54:37] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:55:36.399786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:55:36.531492 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.533698 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:55:36.572218 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.574227 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:55:36.611032 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.613042 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:55:36.646716 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.649351 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line4@mysy.fr pour la session 64e31efa91fc36d503928322 +INFO:root:2023-08-21 10:55:36.685647 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.687647 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 1_student@mysy.com pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:55:36.723376 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.725376 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 2_student@mysy.com pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:55:36.761717 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.763717 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 3_student@mysy.com pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:55:36.797534 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:36.799534 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 4_student@mysy.com pour la session 64e31efa91fc36d503928322 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:55:36] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:55:36.938154 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:55:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:55:54.422137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:55:54.561485 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.565883 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:55:54.604062 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.606064 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:55:54.640375 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.642400 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:55:54.682041 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.684031 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line4@mysy.fr pour la session 64e31efa91fc36d503928322 +INFO:root:2023-08-21 10:55:54.721901 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.724902 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 1_student@mysy.com pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:55:54.764176 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.766188 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 2_student@mysy.com pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:55:54.802176 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.804176 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 3_student@mysy.com pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:55:54.838649 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:55:54.840652 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 4_student@mysy.com pour la session 64e31efa91fc36d503928322 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:55:54] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:55:54.969269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:55:55] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:56:05.517517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:56:05.656984 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.659624 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line1@mysy.fr pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:56:05.697690 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.699206 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line2@mysy.fr pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:56:05.735479 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.737479 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line3@mysy.fr pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:56:05.776199 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.778229 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email line4@mysy.fr pour la session 64e31efa91fc36d503928322 +INFO:root:2023-08-21 10:56:05.815860 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.817891 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 1_student@mysy.com pour la session 64e31efa91fc36d50392831f +INFO:root:2023-08-21 10:56:05.858108 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.862108 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 2_student@mysy.com pour la session 64e31efa91fc36d503928320 +INFO:root:2023-08-21 10:56:05.900493 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.903476 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 3_student@mysy.com pour la session 64e31efa91fc36d503928321 +INFO:root:2023-08-21 10:56:05.939866 : SendPre_InscriptionEmail -no such item for Cursor instance - ERRORRRR AT Line : 918 +INFO:root:2023-08-21 10:56:05.940867 : WARNING : Impossible d'envoyer le mail de preinscriton à AddStagiairetoClass - l'adresse email 4_student@mysy.com pour la session 64e31efa91fc36d503928322 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:56:05] "POST /myclass/api/AddStagiairetoClass_mass_for_many_session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:56:06.062876 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:56:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:56:21.720179 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:56:21.722733 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:56:21] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:56:21] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:57:45.078360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:57:45.099388 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:57:45] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:57:46.124888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:57:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:57:47.019274 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:57:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:58:05.817767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:58:05.820845 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:58:05] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:58:05] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:58:18.765514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:58:18.769417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:58:18] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:58:18] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 10:58:25.162399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 10:58:25.164931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:58:25] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 10:58:25] "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\\Inscription_mgt.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-21 11:01:39.356003 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:01:39.356003 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:01:39.356003 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:01:39.356003 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:01:39.356003 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 11:02:06.305326 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:02:06.305326 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:02:06.305326 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:02:06.305326 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:02:06.305326 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 11:02:40.343358 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:02:40.343358 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:02:40.343358 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:02:40.343358 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:02:40.344353 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 11:05:17.762257 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:05:17.763258 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:05:17.763258 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:05:17.763258 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:05:17.763258 : ++ 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-21 11:05:28.689083 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:05:28.689083 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:05:28.689083 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:05:28.689083 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:05:28.689083 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 11:05:28.767475 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:05:28.771465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:05:28.773430 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:05:28.776469 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:05:28.782473 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:05:28.789041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:05:28.794247 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2023-08-21 11:05:28.796246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:05:41.623614 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:05:41.627269 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:41] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:05:41] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:27.677001 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:28.238831 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 11:06:28.239827 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:28] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:28.682405 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:29.206247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:29] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:36.095161 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:36.098049 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:36.103055 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:36.109326 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:36.226325 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:36.229601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:36.233125 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:36.237126 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:36] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:36] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:42.633694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:42.637263 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:42] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:42] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:52.542248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:52.546248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:52.550249 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:06:56.883347 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:56.887115 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:06:56.890441 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:06:56] "POST /myclass/api/GetSessionFormation/ 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-21 11:16:37.608281 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:16:37.608281 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:16:37.609289 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:16:37.609289 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:16:37.609289 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +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-21 11:17:45.659252 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:17:45.659252 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:17:45.660252 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:17:45.660252 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:17:45.660252 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 11:24:08.291667 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:08.294581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:08.298561 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:08] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:08] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:10.645546 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:10.704497 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:10] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:12.303363 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:12.307722 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:12.311522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:16.747165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:16.751173 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:16.757083 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:16.762092 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:16.881346 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:16.884345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:16.888359 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:21.085315 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:21.088549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:21.093585 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:21] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:21] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:58.762253 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:24:58.765276 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:58] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:58] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:24:58.773088 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:24:58] "POST /myclass/api/GetAllClassStagiaire/ 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-21 11:31:07.536831 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:31:07.536831 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:31:07.536831 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:31:07.536831 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:31:07.536831 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 142-655-673 +INFO:root:2023-08-21 11:31:07.578555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:07.580564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:07.583767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:07.586973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:07.592180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:07.595214 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:07] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:31:07.602409 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:07] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:07] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:07] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:31:10.345975 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:10.349257 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:10.353318 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:10] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:31:25.659350 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:25.662878 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:31:25.666958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:25] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:31:25] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:33:14.032300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:33:14.036300 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:33:14] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:33:14.041301 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:33:14.045301 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:33:14] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:33:14] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:33:14.161518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:33:14.164516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:33:14.167517 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:33:14] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:33:14] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:33:14] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:34:39.900780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:39.902291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:39.905301 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:39] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:34:44.340034 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:44.343059 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:34:44.348208 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:44.352613 : Connexion du partner recid = dbdd36f3d86a73e2bfac7b3f10f062ce1e7c22f7da37de192a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:34:44.473226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:44.476495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:44.478505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:34:50.000201 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:50.004816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:34:50.007628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:34:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:50:53.974273 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:50:53.975684 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:50:53.975684 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:50:53.975684 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:50:53.975684 : ++ 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-21 11:51:06.594131 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 11:51:06.594131 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 11:51:06.594131 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 11:51:06.594131 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 11:51:06.594131 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 11:51:18.028774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:18.030960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:18.032341 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:18] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:18] "POST /myclass/api/Get_Suggested_Fr_Cities/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:18] "POST /myclass/api/Get_Suggested_Word/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:18.651074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:18.652094 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:18] "POST /myclass/api/get_all_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.160255 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.164991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.169995 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.174991 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.174991 : La session de connexion n'est pas valide +INFO:root:2023-08-21 11:51:19.178628 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.186897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.191901 : La session de connexion n'est pas valide +INFO:root:2023-08-21 11:51:19.194247 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.201087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.201087 : La session de connexion n'est pas valide +INFO:root:2023-08-21 11:51:19.205575 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.212327 : La session de connexion n'est pas valide +INFO:root:2023-08-21 11:51:19.214339 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.218783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.225819 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.229533 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.233960 : La session de connexion n'est pas valide +INFO:root:2023-08-21 11:51:19.235973 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.239582 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.242086 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.251270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.253802 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.259684 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.267098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.269612 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.274934 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:19.276244 : La session de connexion n'est pas valide +INFO:root:2023-08-21 11:51:19.280363 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/getRecodedClassImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:19.287696 : La session de connexion n'est pas valide +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:19] "POST /myclass/api/GetActiveSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:24.476970 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:24] "POST /myclass/api/partner_login/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:24.671867 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:24.674444 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:24.679752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:24.684985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:24] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:24.692765 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:24] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:24] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:24.770747 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:24] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:31.290735 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:31.294591 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:31.298934 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:34.084670 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:34.088582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:34.091594 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:51:56.305676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:51:57.248425 : UpdateStagiairetoClass -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 437 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:51:57] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:55:26.302790 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:55:26.307312 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:26] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:55:26.312572 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:26] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:55:26.320727 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:26] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:55:26.439575 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:55:26.442609 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:55:26.446892 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:26] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:26] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:26] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:55:29.766481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:55:29.770495 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:55:29.775167 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:29] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:55:29] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:59:01.932890 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:59:01.936955 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:59:01.940411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:59:01] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:59:01] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:59:01] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 11:59:14.816519 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 11:59:14.825557 : UpdateStagiairetoClass -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 437 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 11:59:14] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:16.447517 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:16.459522 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:16.467513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:28.824750 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:28.829752 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:28.834825 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:28] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:28.845747 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:28] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:28] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:28.976916 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:28.982192 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:29.014330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:29] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:34.207911 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:34.213932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:34.218933 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:34] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:48.827884 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:48.863484 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 12:03:48.863484 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:48] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:49.252399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:03:49.256394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:49] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:03:50.998219 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:03:51] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:04:03.790004 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:04:03.799633 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:04:03.804509 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:04:03.809561 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:03] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:04:03.978748 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:04:04.001262 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:04:04.006701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:04:08.521800 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:04:08.525785 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:04:08.530042 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:08] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:08] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:04:08] "POST /myclass/api/GetAllClassStagiaire/ 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-21 12:07:19.747561 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:07:19.748568 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:07:19.748568 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:07:19.748568 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:07:19.748568 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:12:28.824566 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:28.828484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:28.831485 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:28] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:12:38.788720 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:38.793246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:38] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:12:38.799649 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:38] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:12:38.808652 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:38] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:12:38.969690 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:38.974191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:38.979044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:12:46.751592 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:46.754985 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:46.759626 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:46] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:12:56.819774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:56.823487 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:12:56.827930 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:56] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:12:56] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:13:11.094124 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:12.375495 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 12:13:12.375495 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:12] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:13:13.063308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:13.068775 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:13:15.248990 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:15] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:13:31.777786 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:31.781048 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:31.783239 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:31] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:13:31.791466 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:31] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:31] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:13:31.901889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:31.904743 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:31.906860 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:31] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:13:40.849643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:40.852645 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:13:40.855646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:40] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:13:40] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:14:43.586821 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:43] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:14:44.297444 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:14:46.697181 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:46] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:14:49.950644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:14:49.974652 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:49] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:14:56.551656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:14:56.554884 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:56] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:14:56.559064 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:14:56.565172 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:56] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:56] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:14:56.699097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:14:56.702507 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:14:56.705500 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:14:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:00.501624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:00.505057 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:00.508158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:02.044502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:02.051563 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:02] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:09.375515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:09.378710 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:09.382842 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:09.385836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:09] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:15.994965 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:15.998978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:16.002873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:16.008873 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:16] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:16.121209 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:16.123233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:16.126226 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:16.132382 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:16] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:19.018515 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:19.022392 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:19] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:19] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:15:34.666019 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:15:34.671562 : UpdateStagiairetoClass -'OP20' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 438 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:15:34] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:16:08.103114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:16:08.106105 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:16:08.109768 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:16:08.115073 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:16:08] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:16:08] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:16:08] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:16:08] "POST /myclass/api/GetAllValideSessionPartner_List/ 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-21 12:16:34.294811 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:16:34.294811 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:16:34.295808 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:16:34.295808 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:16:34.295808 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:17:44.733709 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:17:44.737960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:17:44.740432 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:17:44.750060 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:17:44.878473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:17:44.879996 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:17:44.883998 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:17:44.888513 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:44] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:44] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:17:48.083682 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:17:48.087155 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:48] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:17:48] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:05.222470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:05.245034 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:05] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:05.855305 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:06.364480 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:06] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:12.914719 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:12.917149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:12.921172 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:12] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:12] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:12.933407 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:12] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:13.029627 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:13.032150 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:13.035165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:13.037613 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:13] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:13] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:13] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:13] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:21.437678 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:21.441698 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:21] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:21] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:37.667761 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:37.670889 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:37.673888 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:37] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:37] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:37] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:18:39.542043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:39.545335 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:18:39.549391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:39] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:39] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:18:39] "POST /myclass/api/GetAllClassStagiaire/ 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-21 12:26:53.836211 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:26:53.836211 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:26:53.836211 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:26:53.836211 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:26:53.836211 : ++ 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-21 12:27:03.188480 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:27:03.188480 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:27:03.188480 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:27:03.188480 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:27:03.188480 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:27:03.224228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:27:03.226232 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:27:03.228228 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:27:03.230617 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:27:03.233254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:27:03.237860 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:27:03.797805 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3373 +INFO:root:2023-08-21 12:27:03.799052 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3373 +INFO:root:2023-08-21 12:27:03.799052 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3373 +INFO:root:2023-08-21 12:27:03.799052 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3373 +INFO:root:2023-08-21 12:27:03.800061 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3373 +INFO:root:2023-08-21 12:27:03.800061 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3373 +INFO:root:2023-08-21 12:27:03.805797 : GetPartnerAttestation_Certificat -argument of type 'bool' is not iterable - ERRORRRR AT Line : 39 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:27:03] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:27:03] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:27:03.826664 : get_partner_class -'bool' object has no attribute 'keys' - Line : 2106 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:27:03] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:27:03.828190 : get_partner_account -'bool' object has no attribute 'keys' - ERRORRRR AT Line : 892 +INFO:root:2023-08-21 12:27:03.828190 : GetAllValideSessionPartner_List -'bool' object has no attribute 'keys' - ERRORRRR AT Line : 616 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:27:03] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:27:03] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:27:03.832860 : LMS_Get_Partner_Data -'bool' object has no attribute 'keys' - Line : 2012 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:27:03] "POST /myclass/api/LMS_Get_Partner_Data/ 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-21 12:28:18.101404 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:28:18.101404 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:28:18.102402 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:28:18.102402 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:28:18.102402 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:28:18.135930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:28:18.139930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:28:18.142912 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:28:18.146513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:28:18.151520 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:28:18] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:28:18.154511 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:root:2023-08-21 12:28:18.158540 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:28:18] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:28:18] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:28:18] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:28:18] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:28:18] "POST /myclass/api/GetAllValideSessionPartner_List/ 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-21 12:29:15.596628 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:29:15.596628 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:29:15.597146 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:29:15.597146 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:29:15.597146 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:29:15.637584 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:15.643127 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:15.648063 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:15.650114 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:15.655419 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:15.659659 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:16.173785 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:29:16.173785 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:29:16.173785 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:29:16.175268 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:29:16.175268 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:29:16.175268 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:16] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:29:16.191842 : get_partner_account -'bool' object has no attribute 'keys' - ERRORRRR AT Line : 892 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:16] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:29:16.192946 : GetPartnerAttestation_Certificat -argument of type 'bool' is not iterable - ERRORRRR AT Line : 39 +INFO:root:2023-08-21 12:29:16.192946 : get_partner_class -'bool' object has no attribute 'keys' - Line : 2106 +INFO:root:2023-08-21 12:29:16.192946 : GetAllValideSessionPartner_List -'bool' object has no attribute 'keys' - ERRORRRR AT Line : 616 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:16] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:16] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:16] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:29:16.195361 : LMS_Get_Partner_Data -'bool' object has no attribute 'keys' - Line : 2012 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:16] "POST /myclass/api/LMS_Get_Partner_Data/ 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-21 12:29:54.345367 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:29:54.346368 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:29:54.346368 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:29:54.346368 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:29:54.346368 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:29:55.792817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:55.795816 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:55.797819 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:29:55.808350 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:29:55.928580 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:55.931576 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:29:55.935582 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:29:55] "POST /myclass/api/GetAllValideSessionPartner_List/ 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-21 12:32:18.172185 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:32:18.172185 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:32:18.172185 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:32:18.172185 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:32:18.172185 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 12:32:35.787607 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:32:35.788604 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:32:35.788604 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:32:35.788604 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:32:35.788604 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:32:35.830174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:32:35.833175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:32:35.836378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:32:35.840026 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:32:35.843550 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:32:35.847547 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:32:36.389231 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:32:36.390249 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:32:36.391253 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:32:36.391253 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:32:36.391253 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:32:36.393241 : strip_dictionary -'dict' object has no attribute 'strip' - ERRORRRR AT Line : 3378 +INFO:root:2023-08-21 12:32:36.405021 : GetPartnerAttestation_Certificat -argument of type 'bool' is not iterable - ERRORRRR AT Line : 39 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:32:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:32:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:32:36.410051 : get_partner_class -'bool' object has no attribute 'keys' - Line : 2106 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:32:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:32:36.412752 : GetAllValideSessionPartner_List -'bool' object has no attribute 'keys' - ERRORRRR AT Line : 616 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:32:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:32:36.415104 : get_partner_account -'bool' object has no attribute 'keys' - ERRORRRR AT Line : 892 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:32:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:32:36.416534 : LMS_Get_Partner_Data -'bool' object has no attribute 'keys' - Line : 2012 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:32:36] "POST /myclass/api/LMS_Get_Partner_Data/ 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-21 12:34:54.003357 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:34:54.003357 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:34:54.004358 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:34:54.004358 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:34:54.004358 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 12:36:11.815259 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:36:11.816259 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:36:11.816259 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:36:11.816259 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:36:11.816259 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 12:37:19.215524 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:37:19.215524 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:37:19.215524 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:37:19.216528 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:37:19.216528 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 12:42:09.072410 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:42:09.073414 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:42:09.073414 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:42:09.073414 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:42:09.073414 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:42:09.106138 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:09.110324 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:09.112861 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:09.115877 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:42:09.119505 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:09.124538 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:42:09.136452 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:42:17.750498 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:17.753843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:17.757268 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:17] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:17] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:42:19.222954 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:19.730314 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:19] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:42:28.609148 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:42:28.612146 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:28] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:42:28.630329 : getRecodedStagiaireImage_from_front : Le stagiaire line3@mysy.fr n'est pas reconnu pour la session AP01 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:42:28] "POST /myclass/api/getRecodedStagiaireImage_from_front/ 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-21 12:46:40.969174 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:46:40.969174 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:46:40.969174 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:46:40.969174 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:46:40.969174 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 12:52:20.620578 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 12:52:20.620578 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 12:52:20.620578 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 12:52:20.621577 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 12:52:20.621577 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 12:55:44.731145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:55:44.734835 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:55:44.738044 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:44] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:44] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:55:44.767414 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:44] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:55:44.866338 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:55:44.870828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:55:44.873847 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:55:48.925097 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:55:48.928297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:55:48.931376 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:48] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:55:48] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:56:05.037237 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:56:05.045236 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:56:05] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:56:06.120286 : getRecodedStagiaireImage_from_front : Le stagiaire line1@mysy.fr n'est pas reconnu pour la session aaOP20 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:56:06] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:59:56.506781 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:59:56.510233 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:59:56.513774 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:59:56.516759 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:59:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:59:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:59:56] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:59:56] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 12:59:58.754173 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 12:59:58.757209 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:59:58] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 12:59:58] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:01:12.895381 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:01:12.897776 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:01:12.901875 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:12] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:12] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:12] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:01:15.333276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:01:15.336344 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:01:15.339412 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:15] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:15] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:01:27.615389 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:01:27.620387 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:27] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:27] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:01:52.955165 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:01:52.963188 : Update_Stagiaire_Image : Le stagiaire line1@mysy.fr n'est pas reconnu pour la session bbOP20 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:01:52] "POST /myclass/api/Update_Stagiaire_Image/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:02:44.004767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:02:44.007451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:02:44.008481 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:44] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:44] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:44] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:02:55.827725 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:02:55.831537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:02:55.834277 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:55] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:02:55.839675 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:55] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:55] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:02:55.960390 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:02:55.964270 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:02:55.967820 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:55] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:55] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:02:55] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:00.010028 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:00.013175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:00.018693 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:00] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:00] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:07.260294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:07.264418 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:07] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:07] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:17.842438 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:17] "POST /myclass/api/Update_Stagiaire_Image/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:30.183742 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:30.186957 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:30.190334 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:30.193941 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:32.577249 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:32.581246 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:32] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:32] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:39.249676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:39.252719 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:39] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:39] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:47.945738 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:47.948610 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:47] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:03:54.968511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:03:54.977055 : Update_Stagiaire_Image : Le stagiaire line1@mysy.fr n'est pas reconnu pour la session bbOP20 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:03:54] "POST /myclass/api/Update_Stagiaire_Image/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:05:50.367865 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:05:50.372029 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:05:50.375512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:05:50.380859 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:05:50] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:05:50] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:05:50] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:05:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:06.663386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:06.666757 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:06.669833 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:06] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:06] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:06.678304 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:06] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:06.798494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:06.800494 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:06.803491 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:06.808511 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:06] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:06] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:17.497561 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:17.501328 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:17] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:17] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:30.279515 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:30] "POST /myclass/api/Update_Stagiaire_Image/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:36.244893 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:36.248126 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:36.250119 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:38.865871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:38.869464 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:38.872502 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:38] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:40.357782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:40.370867 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:40] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:47.480024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:47.483225 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:47] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:47] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:07:53.595863 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:53.598705 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:07:53.603701 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:53] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:07:53] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:08:00.389490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:08:00.392491 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:08:00] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:08:00] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:08:27.198928 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:08:27.201923 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:08:27.204945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:08:27.208938 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:08:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:08:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:08:27] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:08:27] "POST /myclass/api/GetAllValideSessionPartner_List/ 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-21 13:13:50.062144 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:13:50.063144 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:13:50.063144 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:13:50.063144 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:13:50.063144 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 13:16:42.187478 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:16:42.187478 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:16:42.187478 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:16:42.187478 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:16:42.187478 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 13:21:47.639357 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:21:47.639357 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:21:47.639357 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:21:47.639357 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:21:47.639357 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 13:22:38.145808 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:22:38.145808 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:22:38.145808 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:22:38.145808 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:22:38.145808 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 13:22:39.509935 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:22:39.513289 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:22:39.516670 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:22:39.525360 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:22:39.643471 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:22:39.646415 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:22:39.650402 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:22:39.654411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:39] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:39] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:39] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:39] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:22:51.172365 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:22:52.045097 : Get_Statgaire_List_Partner_with_filter - Creation partner account : Le champ 'session_id' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:22:52] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:24:00.074480 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:00.078462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:00.080981 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:00.083002 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:24:00.094106 : Get_Statgaire_List_Partner_with_filter - Creation partner account : Le champ 'session_id' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:00] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:24:04.760562 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:04.764063 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:24:04.767164 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:04.772527 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:24:04.894544 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:04.898196 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:04.902377 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:24:04.907902 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:04] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:24:15.294030 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:24:15.299063 : Get_Statgaire_List_Partner_with_filter -unhashable type: 'dict' - ERRORRRR AT Line : 4156 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:24:15] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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-21 13:26:03.980638 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:26:03.980638 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:26:03.980638 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:26:03.981650 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:26:03.981650 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 13:26:04.022220 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:26:04.512084 : Get_Statgaire_List_Partner_with_filter -unhashable type: 'dict' - ERRORRRR AT Line : 4156 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:26:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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-21 13:28:50.781047 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:28:50.781047 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:28:50.781047 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:28:50.781047 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:28:50.781047 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 13:28:50.818521 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:28:50] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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-21 13:29:10.988200 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:29:10.988200 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:29:10.988200 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:29:10.988200 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:29:10.988200 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +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-21 13:30:13.598240 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:30:13.598240 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:30:13.598240 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:30:13.598240 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:30:13.598240 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 13:30:13.635364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:30:13] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:32:09.037475 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:32:09] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:32:16.773352 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:32:16] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:33:21.933552 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:33:21] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ 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-21 13:34:41.696240 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:34:41.697230 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:34:41.697230 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:34:41.697230 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:34:41.697230 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 13:34:46.583330 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:34:46] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:35:02.662361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:35:02] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:38:58.392555 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:38:58.394548 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:38:58.398564 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:38:58.402958 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:38:58] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:38:58] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:38:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:38:58] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:39:29.373297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:39:29.376297 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:39:29.379615 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:39:29.381633 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:39:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:39:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:39:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:39:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:40:04.860727 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:40:04.863731 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:40:04.865729 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:40:04] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:40:04.873263 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:40:04] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:40:04] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:40:04.993052 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:40:04.995536 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:40:05.000277 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:40:05.004297 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:40:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:40:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:40:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:40:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:42:54.070759 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:54.073760 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:54.079177 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:54.083199 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:54] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:54] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:42:57.572922 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:57.576291 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:57.580288 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:42:57.587305 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:42:57.721537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:57.725611 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:57.729629 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:42:57.732607 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:57] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:57] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:42:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:43:13.351202 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:43:13] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:43:28.356794 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:43:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:43:36.934345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:43:36.937447 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:43:36] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:43:36] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:00.566193 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:44:00.585097 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:00] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:01.020164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:01] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:01.421049 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:01] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:09.287178 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:30.743876 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:44:30.747824 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:44:30.753158 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:30] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:30.762939 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:30] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:30] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:30.928384 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:44:30.931400 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:44:30.935596 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:44:30.940509 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:30] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:30] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:44:44.792571 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:44:44.795168 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:44] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:44:44] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:45:08.977974 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:45:09.851752 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 13:45:09.851752 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:09] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:45:10.186596 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:10] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:45:10.624650 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:10] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:45:21.418843 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:45:21.421869 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:21] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:21] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:45:35.065758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:45:35.077771 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:35] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:45:35.204103 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:35] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:45:35.653160 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:45:35] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:48:34.234549 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:34.237579 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:34.243361 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:34.249681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:34] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:34] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:34] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:34] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:48:53.267428 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:53.272397 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:53] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:48:53.277263 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:53.283803 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:53] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:53] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:48:53.402680 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:53.406318 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:53.408327 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:53.413327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:53] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:48:57.798451 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:48:57.800812 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:57] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:48:57] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:49:07.368276 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:49:07.383003 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 13:49:07.383003 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:49:07] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:49:07.752074 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:49:07] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:49:08.172361 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:49:08] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:49:26.960484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:49:26.963436 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:49:26] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:49:26] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:50:05.923137 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:50:05.926147 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:50:05.930142 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:50:05.932140 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:50:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:50:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:50:05] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:50:05] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:50:18.261345 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:50:18.278558 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 13:50:18.278558 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:50:18] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:50:18.424164 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:50:18] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:50:18.950985 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:50:18] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:51:29.522567 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:51:29.524797 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:51:29.527806 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:51:29.532600 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:51:29] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:51:29] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:51:29] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:51:29] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:52:18.997932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:52:19.000979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:52:19.003574 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:19] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:19] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:52:19.010580 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:19] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:52:19.124607 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:52:19.127090 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:52:19.129146 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:52:19.134603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:19] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:19] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:52:22.781349 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:52:22.784379 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:22] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:22] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:52:59.080145 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:52:59.092985 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:59] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:52:59.510608 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:59] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:52:59.976553 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:52:59] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:55:31.154406 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:31.157859 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:31.164134 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:31.167133 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:31] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:31] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:31] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:31] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:55:39.953691 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:39.958614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:39] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:55:39.966714 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:39.971947 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:39] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:39] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:55:40.154572 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:40.158508 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:40.163041 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:40.169053 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:40] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:40] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:40] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:40] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:55:45.086698 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:55:45.089891 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:45] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:55:45] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:56:04.351969 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:56:04.364886 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:56:04] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:56:04.869144 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:56:04] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:56:05.348411 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:56:05] "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-21 13:58:54.358545 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 13:58:54.358545 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 13:58:54.359547 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 13:58:54.359547 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 13:58:54.359547 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 13:58:59.847570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:58:59.850565 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:58:59.852567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:58:59] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:58:59.863381 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:58:59] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:58:59] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:00.017465 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:00.023373 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:00.027795 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:00.031978 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:00] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:05.275711 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:05.280197 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:05] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:05] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:22.445101 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:23.307748 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 13:59:23.307748 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:23] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:23.883690 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:23] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:24.375603 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:24] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:46.178804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:46.180883 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:46.185737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:46] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:46] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:46] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:50.813945 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:50.816560 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:50.820580 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:50] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:50] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 13:59:52.535960 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 13:59:52.548731 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 13:59:52] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:00:07.421979 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:00:07.436808 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 14:00:07.436808 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:07] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:00:07.796531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:00:07.800188 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:00:09.200783 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:00:14.326834 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:00:14.329749 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:14] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:14] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:00:37.221880 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:37] "POST /myclass/api/Update_Stagiaire_Image/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:00:53.468581 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:00:53.471086 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:00:53.473312 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:00:53.478323 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:53] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:53] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:00:58.633210 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:00:58] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:00.383186 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:00.386898 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:00] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:00] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:22.825542 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:22.827770 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:22.834093 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:22] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:22] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:24.716636 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:24.719931 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:24] "POST /myclass/api/get_List_domaine_formation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:24] "POST /myclass/api/get_List_metier_formation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:25.073237 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:25] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:25.139646 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:25] "POST /myclass/api/find_partner_class_like/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:28.753737 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:28] "POST /myclass/api/check_partner_token_validity_v2/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:30.580837 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:30] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:30.600938 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:30.603217 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:30.606598 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:30] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:30] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:30] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:33.640355 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:33.643631 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:01:33.646809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:01:33.652660 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:33] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:33] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:01:33] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:10:10.376833 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:10:10.381828 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:10:10.387829 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:10:10.391840 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:10] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:10] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:10] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:10] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:10:16.993004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:10:16.998624 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:10:17.003767 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:10:17.007765 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:17] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:17] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:10:23.264999 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:10:23.270699 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:10:23.275815 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:10:23.280940 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:10:23] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:11:27.160643 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:11:27.163642 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:11:27.168005 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:11:27.173343 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:27] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:27] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:27] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:27] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:11:34.252991 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:11:34.260749 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:11:34.263251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:11:34.267704 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:34] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:34] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:34] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:11:38.852807 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:11:38.861129 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:11:38.864248 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:11:38.867020 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:38] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:11:38] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:13:15.502254 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:13:15.512514 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:13:15.515581 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:13:15.519647 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:15] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:13:19.913924 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:13:19.929817 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:13:19.936543 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:19] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:13:19.941780 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:13:26.182149 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:13:26.185308 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:13:26.188386 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:13:26.191391 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:26] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:26] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:13:26] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:14:52.815075 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:14:52.818251 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:14:52.824360 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:14:52.827364 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:14:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:14:52] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:14:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:14:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:17:00.122804 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:00.125831 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:00.130284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:00.134488 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:00] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:00] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:17:05.117976 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:05.123470 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:05.127570 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:05.131567 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:05] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:05] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:05] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:05] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:17:10.122792 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:10.124913 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:10.129294 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:10.133964 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:10] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:10] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:10] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:17:42.734002 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:42.738391 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:42.743181 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:17:42.746797 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:42] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:42] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:42] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:17:42] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:18:49.464936 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:49.469947 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:49.474525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:49.477614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:49] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:49] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:49] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:49] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:18:54.224421 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:54.228425 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:54.232953 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:54.238196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:54] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:54] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:54] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:54] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:18:57.712641 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:57.715730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:18:57.722216 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:18:57.726722 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:57] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:57] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:18:57] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:20:00.623087 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:20:00.625074 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:20:00.627394 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:20:00] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:20:00] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:20:00] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:20:05.944166 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:20:05.946300 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:20:05.950371 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:20:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:20:05] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:20:05] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:20:07.612102 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:20:07.618116 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:20:07] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ 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-21 14:21:41.839380 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 14:21:41.839380 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 14:21:41.839380 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 14:21:41.839380 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 14:21:41.839380 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 14:21:51.182525 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:21:51.187266 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:21:51.191780 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:21:51.198317 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:51] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:51] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:51] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:51] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:21:56.527877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:21:56.531873 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:21:56.537718 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:21:56.543415 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:56] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:56] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:56] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:21:56] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:23:53.264279 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:23:53.268598 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:23:53.273084 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:23:53.278291 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:23:53] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:23:53] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:23:53] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:23:53] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:25:06.436206 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:25:06.439302 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:25:06.445316 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:25:06.449373 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:06] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:06] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:06] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:06] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:25:36.737729 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:25:36.742518 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:25:36.745721 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:36] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:25:36.753584 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:36] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:36] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:25:36.916043 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:25:36.919664 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:25:36.922679 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:36] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:36] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:25:36] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:26:52.345323 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:26:52.348830 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:26:52.349838 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:26:52] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:26:52] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:26:52.358567 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:26:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:26:52.493851 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:26:52.496852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:26:52.500851 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:26:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:26:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:26:52] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:27:04.975172 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:27:04.977185 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:27:04.981195 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:27:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:27:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:27:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:27:06.835094 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:27:07.369065 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:27:07] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:28:52.990024 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:28:52.992035 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:28:52.998784 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:28:52] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:28:53] "POST /myclass/api/getRecodedParnterImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:29:24.917871 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:24.921399 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:24.926356 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:24.929631 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:24] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:29:38.183733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:38.186733 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:38.190730 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:29:38.194809 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:38] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:38] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:38] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:29:48.443537 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:48.447040 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:48.450109 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:48] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:48] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:48] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:29:57.417007 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:57.420470 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:57] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:29:57.424467 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:57.429721 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:57] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:57] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:29:57.561676 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:57.565490 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:29:57.567504 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:57] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:57] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:29:57] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:32:17.140656 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:32:17.143843 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:17] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:32:17.148597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:32:17.154102 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:17] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:17] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:32:17.272180 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:32:17.275331 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:32:17.277461 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:17] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:17] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:17] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:32:42.208512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:32:42.211512 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:32:42.214512 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:42] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:42] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:32:43.918235 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:32:43.925443 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:32:43] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:04.677378 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:04.680417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:04.683614 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:04] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:04] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:04] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:09.285175 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:09.288454 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:09] "POST /myclass/api/getRecodedImage/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:09.292462 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:09.296984 : Connexion du partner recid = 8a77c1642a21a9a417a8583f4ef7f2f9c174a99996abb4c63a OK. Mise à jour du firstconnexion et/ou lastconnexion : OK +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:09] "POST /myclass/api/get_partner_account/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:09] "POST /myclass/api/LMS_Get_Partner_Data/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:09.430700 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:09.434317 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:09.437604 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:09] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:09] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:09] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:14.211980 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:14.214098 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:14.218830 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:14] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:14] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:15.825284 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:15.832280 : GetSpecificPartnerAttestation_Certificat Impossible de recuperer les données de ce template +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:15] "POST /myclass/api/GetSpecificPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:26.576150 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:26] "POST /myclass/api/Add_Update_SessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:27.273910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:27] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:30.091971 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:30] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:38.757446 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:38.766891 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:38.771306 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:38] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:38.778792 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:38] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:38] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:38] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:44.043772 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:44.046771 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:34:44.050769 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:34:44.057917 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:34:44] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:35:19.319649 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:35:19.325646 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:35:19.334655 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:35:19.340655 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:19] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:19] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:19] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:19] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:35:24.077802 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:35:24.095854 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:35:24.101994 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:24] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:35:24.110640 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:35:30.205269 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:35:30.209513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:35:30.215091 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:35:30.221211 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:30] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:30] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:35:30] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:37:43.220597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:37:43.227174 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:37:43.233932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:37:43.238551 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:43] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:43] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:43] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:43] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:37:52.550502 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:37:52.554417 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:37:52.558897 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:37:52.563910 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:52] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:52] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:37:52] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:38:52.873305 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:38:52.876939 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:38:52.883782 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:38:52.886919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:52] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:52] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:52] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:52] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:38:59.416243 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:38:59.419754 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:38:59.422906 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:38:59.428601 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:38:59.433648 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:59] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:59] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:59] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:38:59.446721 : GetSessionFormation - Le champ 'code_session' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:38:59] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:39:07.863191 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:39:07.867484 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:39:07.868582 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:39:07.874756 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:07] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:07] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:07] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:07] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:39:13.805184 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:39:13.810414 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:39:13.818569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:13] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:39:13.824566 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:13] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:39:13.833961 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:13] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:39:13.841956 : GetSessionFormation - Le champ 'code_session' n'est pas autorisé, Creation partenaire annulée +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:39:13] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:23.130930 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:23.134832 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:23.139868 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:23.143327 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:23] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:23] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:23] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:23] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:27.628285 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:27.642531 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:27.646199 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:27.649477 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:27] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:27.654925 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:27] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:27] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:27.665947 : GetSessionFormation -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 433 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:27] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:32.390037 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:32.393703 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:32.397836 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:32.402473 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:32.407029 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:32] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:32] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:32] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:32] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:45.606758 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:45.609852 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:45.612865 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:45.621437 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:45] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:45] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:45] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:40:45.631038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:40:45.636485 : GetSessionFormation -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 433 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:40:45] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:24.209238 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:24.213242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:24.217242 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:24.220260 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:24] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:24] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:24] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:24] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:41.725597 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:41.727929 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:41.732418 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:41.737486 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:41] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:41] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:41] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:41] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:47.329569 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:47.337511 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:47.340827 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:47.345516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:47.350522 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:47] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:47] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:47] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:47] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:54.444004 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:54.447102 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:54.453677 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:42:54.457036 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:54] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:54] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:54.464589 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:54] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:42:54.473116 : GetSessionFormation -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 433 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:42:54] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:43:04.274448 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:43:04.281970 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:43:04.286773 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:43:04.291314 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:04] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:43:04.294309 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:04] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:04] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:04] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:43:12.267737 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:43:12.274681 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:43:12.279407 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:43:12.283685 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:43:12.288077 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:12] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:12] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:12] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:43:12.304249 : GetSessionFormation -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 433 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:43:12] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:33.567932 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:45:33.578947 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:33] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:33.585481 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:45:33.589919 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:33] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:33] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:33] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:36.814265 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:45:36.818694 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:45:36.822417 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:36.826503 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:45:36.830046 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:36] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:36] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:36] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:36] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:44.472636 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:44.484227 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:45:44.487728 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:45:44.490846 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:44] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:44.497076 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:44] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:44] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:45:44.507014 : GetSessionFormation -'' is not a valid ObjectId, it must be a 12-byte input or a 24-character hex string - ERRORRRR AT Line : 433 +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:45:44] "POST /myclass/api/GetSessionFormation/ 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-21 14:48:50.769051 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 14:48:50.770051 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 14:48:50.770051 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 14:48:50.770051 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 14:48:50.770051 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:root:2023-08-21 14:52:15.864426 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:15.869429 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:15.873478 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:15.877027 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:15] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:15] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:15] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:15] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:52:18.878141 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:18.881513 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:18.884056 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:18.888676 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:52:18.891974 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:18] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:18] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:18] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:18] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:52:23.286196 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:52:23.299569 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:23.301917 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:23.306038 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:23.309442 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:23] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:23] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:23] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:23] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:52:43.044486 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:43.046644 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:43.051877 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:43.054692 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:52:43.061194 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:43] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:43] "POST /myclass/api/GetSessionFormation/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:43] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:43] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:52:50.770374 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:52:50.773678 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:50] "POST /myclass/api/GetAttendeeDetail_perSession/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:52:50] "POST /myclass/api/getRecodedStagiaireImage_from_front/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:53:06.378474 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:53:06.882334 : incription_training_confirmation_mail - : La valeur 'date_du' n'est pas presente dans liste +INFO:root:2023-08-21 14:53:06.882334 : Les données du stagiaire ont été correctement mise à jour +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:06] "POST /myclass/api/UpdateStagiairetoClass/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:53:07.090156 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:53:07.290376 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:53:07.294479 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:53:07.299505 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:07] "POST /myclass/api/GetAllClassStagiaire/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:07] "POST /myclass/api/GetTableauEmargement/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:07] "POST /myclass/api/GetListEvaluation_Session/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:53:28.582516 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:53:28.586839 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:53:28.588989 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:53:28.594058 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:28] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:28] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:28] "POST /myclass/api/GetAllValideSessionPartner_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:53:28] "POST /myclass/api/Get_Statgaire_List_Partner_with_filter/ HTTP/1.1" 200 - +INFO:root:2023-08-21 14:54:02.155036 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:54:02.159080 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:54:02.163071 : Security check : IP adresse '127.0.0.1' connected +INFO:root:2023-08-21 14:54:02.168068 : Security check : IP adresse '127.0.0.1' connected +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:54:02] "POST /myclass/api/get_partner_class/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:54:02] "POST /myclass/api/GetAllValideSessionFormation_List/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:54:02] "POST /myclass/api/GetPartnerAttestation_Certificat/ HTTP/1.1" 200 - +INFO:werkzeug:127.0.0.1 - - [21/Aug/2023 14:54:02] "POST /myclass/api/Get_Partner_List_Partner_Client/ HTTP/1.1" 200 - +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ressources_humaines.js.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-21 15:03:36.356775 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 15:03:36.357779 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 15:03:36.357779 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 15:03:36.357779 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 15:03:36.357779 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ressources_humaines.js.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-21 15:04:11.021968 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 15:04:11.021968 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 15:04:11.021968 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 15:04:11.021968 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 15:04:11.021968 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ressources_humaines.js.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-21 15:05:06.456850 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 15:05:06.456850 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 15:05:06.457850 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 15:05:06.457850 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 15:05:06.457850 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ressources_humaines.js.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-21 15:07:52.530695 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 15:07:52.530695 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 15:07:52.530695 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 15:07:52.530695 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 15:07:52.530695 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\ressources_humaines.js.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-21 15:09:55.017057 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 15:09:55.018057 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 15:09:55.018057 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 15:09:55.018057 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 15:09:55.018057 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat +INFO:root:2023-08-21 15:12:36.075001 : ++++ ENVIRONNEMENT DEVELOPPEMENT ++++ +INFO:root:2023-08-21 15:12:36.076001 : ++ DATABASE mongodb://localhost:27017/cherifdb_dev ++ +INFO:root:2023-08-21 15:12:36.076001 : ++ DBNAME Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'cherifdb_dev') ++ +INFO:root:2023-08-21 15:12:36.076001 : ++ FLASK PORT 5001 ++ +INFO:root:2023-08-21 15:12:36.076001 : ++ LMS_BAS_URL mysy-training.com/ ++ +WARNING:werkzeug: * Debugger is active! +INFO:werkzeug: * Debugger PIN: 100-515-922 +INFO:werkzeug: * Detected change in 'C:\\Users\\billa\\Documents\\myclass.com\\Siteweb\\Production\\Ela_back\\Back_Office\\GlobalVariable.py', reloading +INFO:werkzeug: * Restarting with stat diff --git a/Session_Formation.py b/Session_Formation.py index e040cc6..94b95a3 100644 --- a/Session_Formation.py +++ b/Session_Formation.py @@ -383,7 +383,7 @@ si le result > 1 une session, alors erreur d'inchorence d'info. def GetSessionFormation(diction): try: - field_list = ['token', 'class_internal_url', 'code_session', ] + field_list = ['token', 'class_internal_url', 'session_id', ] incom_keys = diction.keys() for val in incom_keys: if val not in field_list: @@ -394,7 +394,7 @@ def GetSessionFormation(diction): """ Verification de la liste des champs obligatoires """ - field_list_obligatoire = ['token', 'class_internal_url', 'code_session', ] + field_list_obligatoire = ['token', 'class_internal_url', 'session_id', ] for val in field_list_obligatoire: if val not in diction: mycommon.myprint( @@ -423,14 +423,17 @@ def GetSessionFormation(diction): if diction['class_internal_url']: class_internal_url = diction['class_internal_url'] - code_session = "" - if ("code_session" in diction.keys()): - if diction['code_session']: - code_session = diction['code_session'] + session_id = "" + if ("session_id" in diction.keys()): + if diction['session_id']: + session_id = diction['session_id'] + + if(str(session_id).strip() == ""): + return True, [] coll_session = MYSY_GV.dbname['session_formation'] - myquery = [{'$match':{'code_session':code_session, 'class_internal_url':class_internal_url, 'partner_owner_recid':str(partner_recid)}}, + myquery = [{'$match':{'_id':ObjectId(str(session_id)), 'class_internal_url':class_internal_url, 'partner_owner_recid':str(partner_recid)}}, {'$lookup': { 'from': 'myclass', @@ -456,7 +459,7 @@ def GetSessionFormation(diction): # Si le nombre de session trouvé est > 1 alors incohérence, retourner une message d'erreur if( nb_val > 1 ): mycommon.myprint(str(inspect.stack()[0][3]) + " - la query "+str(myquery)+" retourne "+str(nb_val)+" session. ceci n'est pas normal. il ne doit pas y avoir plus 1 session") - return False, " Les informations de la session "+str(code_session)+" sont incohérentes. Merci de contacter le support" + return False, " Les informations de la session "+str(session_id)+" sont incohérentes. Merci de contacter le support" return True, RetObject @@ -590,7 +593,7 @@ def GetAllValideSessionFormation_List(diction): myquery['partner_owner_recid'] = str(my_partner['recid']) myquery['valide'] = "1" - #print(" ##### myquery = "+str(myquery)) + print(" ##### myquery tt = "+str(myquery)) RetObject = [] for retval in coll_session.find(myquery): diff --git a/prj_common.py b/prj_common.py index ac2a386..7aca821 100644 --- a/prj_common.py +++ b/prj_common.py @@ -2877,8 +2877,7 @@ def GetAttendeeDetail_perSession(diction): RetObject = [] - qry_filter = {'session_id':str(diction['session_id']),'email':str(diction['attendee_email']), - 'class_internal_url':str(diction['internal_url']),} + qry_filter = {'session_id':str(diction['session_id']),'email':str(diction['attendee_email']),} """" Verification qu'il n'y a q'une seule inscription pour ce critère @@ -3362,12 +3361,25 @@ def RemoveAllNonAlphaNumeric(sentence): """ Cette fonction nettoie un dictionnaire python : Pour chaque mot, il va supprimer les espaces en debut et en fin de mot. +supprime les mots "nan" et "undefined" """ -def strip_dictionary(d): - """ - Strip all leading and trailing whitespace in dictionary keys and values. - """ - return dict((k.strip(), v.strip()) for k, v in d.items()) +def strip_dictionary(orig_diction): + try: + + for key in orig_diction: + if type(orig_diction[key]) == str: + if( orig_diction[key].strip() == "nan" or orig_diction[key].strip() == "undefined"): + orig_diction[key] = "" + else : + orig_diction[key] = orig_diction[key].strip() + + return orig_diction + + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - ERRORRRR AT Line : " + str(exc_tb.tb_lineno)) + return False """ diff --git a/ressources_humaines.js.py b/ressources_humaines.js.py new file mode 100644 index 0000000..bae8c05 --- /dev/null +++ b/ressources_humaines.js.py @@ -0,0 +1,272 @@ +""" +Ce fichier permet de gerer de tout ce qui a atrait aux ressources humaines. +c'est dire : +- enseignent +- cadre administratif +- employés, +etc + +Une ressource humaine a toujours un profil (enseignant, cadre admin) et une fonction. +""" + +import pymongo +from pymongo import MongoClient +import json +from bson import ObjectId +import re +from datetime import datetime +import prj_common as mycommon +import secrets +import inspect +import sys, os +import csv +import pandas as pd +from pymongo import ReturnDocument +import GlobalVariable as MYSY_GV +from math import isnan +import GlobalVariable as MYSY_GV +import ela_index_bdd_classes as eibdd +import email_mgt as email + + + +def Add_Ressource_Humaine(diction): + + try: + diction = mycommon.strip_dictionary(diction) + + """ + Verification des input acceptés + """ + field_list = ['token', "raison_sociale", "nom", "siret", "tva", "email", + "telephone", "website", "comment",'adr_adresse', 'adr_code_postal', + 'adr_ville', 'adr_pays', 'profil', 'telephone_mobile', 'linkedin', + 'facebook', 'twitter', + 'prenom', 'fonction', 'civilite'] + + 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") + return False, " Les informations fournies sont incorrectes", + + """ + Verification des champs obligatoires + """ + field_list_obligatoire = ['token', "email", 'related_collection', 'related_collection_owner_email',] + + 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, " Les informations fournies sont incorrectes", + + """ + Verification de l'identité et autorisation de l'entité qui + appelle cette API + """ + token = "" + if ("token" in diction.keys()): + if diction['token']: + token = diction['token'] + + # Verifier la validité du token + retval = mycommon.check_partner_token_validity("", token) + + if retval is False: + return "Err_Connexion", " La session de connexion n'est pas valide" + + partner_recid = mycommon.get_parnter_recid_from_token(token) + if (partner_recid is False): + mycommon.myprint( + str(inspect.stack()[0][3]) + " - partner_recid est KO. Les données de connexion sont incorrectes ") + return False, " Vous n'etes pas autorisé à utiliser cette API " + + # Recuperation des données du partenaire + local_status, my_partner = mycommon.get_partner_data_from_recid(partner_recid) + if (local_status is False): + mycommon.myprint(str(inspect.stack()[0][3]) + " - impossible de recuperer les données du partenaire") + return False, str(inspect.stack()[0][3]) + " - impossible de recuperer les données du partenaire. " + + + """ + Verification s'il n'existe pas un cient du partenaire qui porte la meme adresse email + """ + + + tmp_count = MYSY_GV.dbname['ressource_humaine'].count_documents({'email': str(diction['email']), + 'valide': '1', 'partner_recid': my_partner['recid']}) + if (tmp_count > 0): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - Il existe déjà un contact qui porte le même email principal = " +str(diction['email'])) + + return False, " - Vous avez déjà un contact qui a le même email principal " + + + + """ + Recuperation des données fournies en entrée + """ + data = {} + data['partner_recid'] = my_partner['recid'] + + raison_sociale = "" + if ("raison_sociale" in diction.keys()): + if diction['raison_sociale']: + raison_sociale = diction['raison_sociale'] + data['raison_sociale'] = diction['raison_sociale'] + + nom = "" + if ("nom" in diction.keys()): + if diction['nom']: + nom = diction['nom'] + data['nom'] = diction['nom'] + + siret = "" + if ("siret" in diction.keys()): + if diction['siret']: + siret = diction['siret'] + data['siret'] = diction['siret'] + + prenom = "" + if ("prenom" in diction.keys()): + if diction['prenom']: + prenom = diction['prenom'] + data['prenom'] = diction['prenom'] + + fonction = "" + if ("fonction" in diction.keys()): + if diction['fonction']: + fonction = diction['fonction'] + data['fonction'] = diction['fonction'] + + civilite = "" + if ("civilite" in diction.keys()): + if diction['civilite']: + civilite = diction['civilite'] + data['civilite'] = diction['civilite'] + + + + adr_adresse = "" + if ("adr_adresse" in diction.keys()): + if diction['adr_adresse']: + adr_adresse = diction['adr_adresse'] + data['adr_adresse'] = diction['adr_adresse'] + + adr_code_postal = "" + if ("adr_code_postal" in diction.keys()): + if diction['adr_code_postal']: + adr_code_postal = diction['adr_code_postal'] + data['adr_code_postal'] = diction['adr_code_postal'] + + adr_ville = "" + if ("adr_ville" in diction.keys()): + if diction['adr_ville']: + adr_ville = diction['adr_ville'] + data['adr_ville'] = diction['adr_ville'] + + adr_pays = "" + if ("adr_pays" in diction.keys()): + if diction['adr_pays']: + adr_pays = diction['siret'] + data['adr_pays'] = diction['adr_pays'] + + tva = "" + if ("tva" in diction.keys()): + if diction['tva']: + tva = diction['tva'] + data['tva'] = diction['tva'] + + email = "" + if ("email" in diction.keys()): + if diction['email']: + email = diction['email'] + data['email'] = diction['email'] + if( mycommon.isEmailValide(email) is False): + mycommon.myprint( + str(inspect.stack()[0][ + 3]) + " - L'adresse email "+str(email)+" n'est pas valide") + + return False, " - - L'adresse email "+str(email)+" n'est pas valide " + + + telephone = "" + if ("telephone" in diction.keys()): + if diction['telephone']: + telephone = diction['telephone'] + data['telephone'] = diction['telephone'] + + telephone_mobile = "" + if ("telephone_mobile" in diction.keys()): + if diction['telephone_mobile']: + telephone_mobile = diction['telephone_mobile'] + data['telephone_mobile'] = diction['telephone_mobile'] + + + website = "" + if ("website" in diction.keys()): + if diction['website']: + website = diction['website'] + data['website'] = diction['website'] + + comment = "" + if ("comment" in diction.keys()): + if diction['comment']: + comment = diction['comment'] + data['comment'] = diction['comment'] + + linkedin = "" + if ("linkedin" in diction.keys()): + if diction['linkedin']: + linkedin = diction['linkedin'] + data['linkedin'] = diction['linkedin'] + + facebook = "" + if ("facebook" in diction.keys()): + if diction['facebook']: + facebook = diction['facebook'] + data['facebook'] = diction['facebook'] + + twitter = "" + if ("twitter" in diction.keys()): + if diction['twitter']: + twitter = diction['twitter'] + data['twitter'] = diction['twitter'] + + + profil = "" + if ("profil" in diction.keys()): + if diction['profil']: + profil = diction['profil'] + data['profil'] = diction['profil'] + if( type not in MYSY_GV.RESSOURCE_PROFIL): + mycommon.myprint( + "- Le type de contact "+str(type)+" n'est pas autorisé") + return False, "- Le type de contact "+str(type)+" n'est pas autorisé" + + + data['valide'] = '1' + data['locked'] = '0' + data['date_update'] = str(datetime.now()) + + # Creation du RecId + data['recid'] = mycommon.create_user_recid() + + + inserted_id = "" + inserted_id = MYSY_GV.dbname['ressource_humaine'].insert_one(data).inserted_id + if (not inserted_id): + mycommon.myprint( + " Impossible de créer le contact ") + return False, " Impossible de créer la ressource " + + + return True, " Le contact a été correctement créé" + + except Exception as e: + exc_type, exc_obj, exc_tb = sys.exc_info() + mycommon.myprint(str(inspect.stack()[0][3]) + " -" + str(e) + " - Line : " + str(exc_tb.tb_lineno)) + return False, " Impossible d'ajouter la ressource "