Enregistrement fonctionnel + résultat à vérifier

This commit is contained in:
xdrm-brackets 2016-11-22 15:05:28 +01:00
parent addd51a627
commit 84faf9484e
16 changed files with 155 additions and 236 deletions

2
.gitignore vendored
View File

@ -2,4 +2,4 @@
sftp-config.json
phpunit/coverage/
*/tmp/*
/build/lightdb/storage/*/data
#/build/lightdb/storage/*/data

View File

@ -72,7 +72,11 @@
if( !isset($subject_set['relations']) )
$subject_set['relations'] = [];
/* (4) On récupère les noms des contacts */
/* (4) Ajout de l'enquête */
if( !in_array('phone', $subject_set['subject']['surveys']) )
$subject_set['subject']['surveys'][] = 'phone';
/* (5) On récupère les noms des contacts */
$contactsById = []; // idContact -> nomContact
foreach($subject_set['contacts'] as $contactId){
@ -282,14 +286,14 @@
/* [6] On les données du sujet
=========================================================*/
$subjectdb->delete($subject_id);
$subjectdb->insert($subject_id, $subject_set);
/* [7] On enregistre les données des contacts
/* [7] Ferme les bases de données
=========================================================*/
/* (1) On enregistre chaque contact */
foreach($file['contacts'] as $c=>$contactData)
$contactdb->insert($contactData['id'], $contactData);
$subjectdb->close();
$contactdb->close();
/* [7] On met à jour le nouvel ID unique
@ -300,7 +304,6 @@
fclose($funiq);
/* [9] Gestion du retour
=========================================================*/
return [
@ -662,10 +665,10 @@
* @return subject_id<int> Retourne l'id sujet de l'enquête
*
*/
public static function xfacebook($params){
public static function facebook($params){
extract($params);
/* [0] On récupère l'id unique actuel
/* [1] On récupère l'id unique actuel
=========================================================*/
$funiq = fopen( __BUILD__.'/lightdb/storage/uniqid', 'r+' );
flock($funiq, LOCK_EX); // On verrouille le fichier
@ -678,154 +681,104 @@
$offset = intval($uniqid) + 1;
// on enregistre l'id du sujet
$subject_id = $subject['subject_id'];
$subject_id = intval($subject['subject_id']);
// Contiendra la valeur de l'id maximum
$maxId = $offset;
// /* [1] On récupère les logs s'ils existent
// =========================================================*/
// // Contiendra le contenu du fichier
/* [2] On initialise nos variables (lightdb + autres)
=========================================================*/
/* (1) Fichiers de sortie */
$file = [
"subject" => "",
"contacts" => [],
"relations" => []
];
/* (2) Bases de données */
$subjectdb = new lightdb('subject');
$contactdb = new lightdb('contact');
/* [2] On enregistre les données du sujet
/* [3] Données du sujet
=========================================================*/
/* (1) On crée le sujet */
$file['subject'] = [ 'id' => $subject_id ];
$subject_set = $subjectdb->fetch($subject_id);
/* (2) On récupère ses contacts phone */
// {2.1} On récupère les données du sujet //
$lphone = new lightdb('phone_db');
$lphone = $lphone->fetch($subject_id);
/* (1) Si le sujet n'existe pas -> ERROR */
if( $subject_set === false )
return ['ModuleError'=>ManagerError::UnreachableResource];
// {2.2} si n'existe pas, on a un tableau vide //
if( $lphone === false )
$lphone = [ 'contacts' => [] ];
/* (2) Initialisation des contacts si vide */
if( !isset($subject_set['contacts']) )
$subject_set['contacts'] = [];
if( !isset($lphone['contacts']) )
$lphone['contacts'] = [];
/* (3) Initialisation des relations si vide */
if( !isset($subject_set['relations']) )
$subject_set['relations'] = [];
/* (4) Ajout de l'enquête */
if( !in_array('facebook', $subject_set['surveys']) )
$subject_set['surveys'][] = 'facebook';
/* (5) On récupère les noms des contacts */
$contactsById = []; // idContact -> nomContact
foreach($subject_set['contacts'] as $contactId){
$contactId = intval($contactId);
$contactData = $contactdb->fetch( $contactId );
$contactsById[$contactId] = $contactData['name'];
}
/* (3) On récupère ses contacts lab-surveys */
// {3.1} On récupère les données du sujet //
$lsurvey = new lightdb('survey_db');
$lsurvey = $lsurvey->fetch($subject_id);
// {3.2} si n'existe pas, on a un tableau vide //
if( $lsurvey === false )
$lsurvey = [ 'contacts' => [] ];
if( !isset($lsurvey['contacts']) )
$lsurvey['contacts'] = [];
/* (4) On récupère uniquement la liste des contacts avec le type de fiche qu'ils ont */
// {4.1} Contiendra les contacts exportés //
$exported = [
'fiche' => [],
'mini' => []
];
// {4.2} Contiendra les username des contacts exportés //
$exportedU = [];
// {4.3} On récupère les contacts facebook //
foreach($lphone['contacts'] as $c=>$data){
if( isset($data['studies2']) ){
$exported['fiche'][] = $data['id'];
$exportedU[$data['id']] = $data['name'];
}else
// S'il n'est pas déja dans les fiches
if( !in_array($data['id'], $exported['fiche']) ){
$exported['mini'][] = $data['id'];
$exportedU[$data['id']] = $data['name'];
}
}
// {4.4} On récupère les contacts lab-surveys //
foreach($lsurvey['contacts'] as $c=>$data){
if( isset($data['studies2']) )
// On ajoute le contact s'il n'y est pas déja
if( !in_array($data['id'], $exported['fiche']) ){
$exported['fiche'][] = $data['id'];
$exportedU['fiche'][] = $data['username'];
}
else
// On ajoute le contact s'il n'y est pas déja (ni dans mini ni dans fiche)
if( !in_array($data['id'], $exported['mini']) && !in_array($data['id'], $exported['fiche']) ){
$exported['mini'][] = $data['id'];
$exportedU['mini'][] = $data['username'];
}
}
/* [3] On enregistre les contacts des FICHES
/* [4] On saisit les fiches + les contacts des fiches
=========================================================*/
$contactsDone = [
"existing" => [], // Contacts exportés déja enregistrés
"username" => [] // Nouveaux contacts déja enregistrés
];
$finalid = []; // id_contact -> id_final_contact (existant ou nouveau)
foreach($fiches as $f=>$ficheData){
/* (1) On récupère les données du contact associé */
if( !isset($contacts[$ficheData['uid']]) )
continue;
if( !isset($contacts[$ficheData['contact']]) )
break;
$contact = $contacts[ $ficheData['uid'] ];
$contact = $contacts[ $ficheData['contact'] ];
/* (2) Si le contact a été importé d'une autre enquête */
if( isset($contact['existing']) && is_numeric($contact['existing']) ){
$newId = (int) $contact['existing'];
$uname = $exportedU[intval($contact['existing'])];
// {2.1} S'il a déja une fiche ou qu'on a déja fait une fiche, on quitte //
if( in_array(intval($contact['existing']), $exported['fiche']) || in_array($contact['existing'], $contactsDone['existing']) )
continue;
$uname = $contactsById[ intval($contact['existing']) ];
$existingData = $dbcontact->fetch( intval($contact['existing']) );
$finalid[ intval($contact['uid']) ] = $newId;
// S'il a déja une fiche ou qu'on a déja fait une fiche, on quitte
if( is_array($existingData) && isset($existingData['studies2']) || in_array($contact['existing'], $contactsDone['existing']) )
break;
/* (3) Si nouveau contact */
}else{
$newId = (int) ($offset+$ficheData['uid']);
$newId = (int) ($offset+$contact['uid']);
$uname = $contact['username'];
// {3.1} S'il a déja été saisi, on quitte //
$finalid[ intval($contact['uid']) ] = $newId;
// S'il a déja été saisi, on quitte
if( in_array($contact['username'], $contactsDone['username']) )
continue;
break;
}
/* (4) Update du @maxId */
if( $newId > $maxId )
$maxId = (int) $newId;
// On remplit les données qui iront dans le fichier pour ce contact
$file['contacts'][] = [
/* (5) On enregistre les données du contact */
$contactdb->insert($newId, [
'id' => $newId,
'name' => $uname,
'sexe' => $ficheData['sexe'],
@ -844,13 +797,17 @@
'freq' => $ficheData['freq'],
'connect' => $ficheData['connect'],
'connectExtra' => $ficheData['connectSpecial']
];
] );
// On ajoute le contact dans la liste des contacts du sujet (si pas déja)
if( !in_array($newId, $subject_set['contacts']) )
$subject_set['contacts'][] = $newId;
// On enregistre la relation avec EGO
$file['relations'][] = [
$subject_set['relations'][] = [
'idA' => $subject_id,
'idB' => $newId,
'type' => ($f<20) ? 4 : 5 // 4->appels 5->sms
'type' => ($f<20) ? 6 : 7 // 6->historique 7->messenger
];
@ -863,32 +820,40 @@
}
/* [4] On enregistre les contacts des MINI
/* [5] On enregistre les mini + les contacts des mini
=========================================================*/
foreach($mini as $miniData){
/* (1) On récupère les données du contact associé */
if( !isset($contacts[$miniData['uid']]) )
continue;
if( !isset($contacts[$miniData['contact']]) )
break;
$contact = $contacts[ $miniData['uid'] ];
$contact = $contacts[ $miniData['contact'] ];
/* (2) Si le contact a été importé d'une autre enquête */
if( isset($contact['existing']) && is_numeric($contact['existing']) ){
$newId = (int) $contact['existing'];
$uname = $exportedU[intval($contact['existing'])];
// {2.1} S'il a déja une fiche ou qu'on a déja fait une fiche (ou mini), on quitte //
if( in_array(intval($contact['existing']), $exported['fiche']) || in_array($contact['existing'], $contactsDone['existing']) )
continue;
$newId = (int) $contact['existing'];
$uname = $contactsById[ intval($contact['existing']) ];
$existingData = $dbcontact->fetch( intval($contact['existing']) );
$finalid[ intval($contact['uid']) ] = $newId;
// S'il a déja une fiche ou qu'on a déja fait une fiche (ou mini), on quitte
if( is_array($existingData) && isset($existingData['studies2']) || in_array($contact['existing'], $contactsDone['existing']) )
break;
/* (3) Si nouveau contact */
}else{
$newId = (int) ($offset+$miniData['uid']);
$uname = $contact['username'];
// {3.1} S'il a déja été saisi, on quitte //
if( in_array($contact['username'], $contactsDone['username']) )
continue;
$finalid[ intval($contact['uid']) ] = $newId;
// S'il a déja été saisi, on quitte
if( in_array($contact['username'], $contactsDone['username']) )
break;
}
/* (4) Update du @maxId */
@ -897,7 +862,7 @@
// On remplit les données qui iront dans le fichier pour ce contact
$file['contacts'][] = [
$contactdb->insert($newId, [
'id' => $newId,
'name' => $uname,
'sexe' => $miniData['sexe'],
@ -905,13 +870,17 @@
'studies1' => $miniData['studies'],
'reltype' => ($miniData['reltype']==10) ? $miniData['reltypeSpecial'] : $miniData['reltype'], // si 'autre' -> valeur, sinon le code
'dist' => $miniData['loc']
];
] );
// On ajoute le contact dans la liste des contacts du sujet (si pas déja)
if( !in_array($newId, $subject_set['contacts']) )
$subject_set['contacts'][] = $newId;
// On enregistre la relation avec EGO
$file['relations'][] = [
$subject_set['relations'][] = [
'idA' => $subject_id,
'idB' => $newId,
'type' => 2 // relation cellulaire mineure
'type' => 3 // relation facebook mineure
];
@ -925,16 +894,14 @@
}
/* [5] On enregistre les relations de la MATRICE
/* [6] On enregistre les relations de la MATRICE
=========================================================*/
$clen = count($file['contacts']);
// var_dump($file['contacts']);
$clen = count($finalid);
/* (1) On récupére les ids des contacts */
$cIdList = [];
foreach($file['contacts'] as $c=>$contact){
$id = (int) $c;
foreach($finalid as $lastid=>$newid){
$id = (int) $lastid;
if( !in_array($id, $cIdList) )
$cIdList[$id] = null;
@ -942,22 +909,18 @@
ksort($cIdList);
/* (2) On remplit les relations */
foreach($cIdList as $y=>$yNull){
foreach($cIdList as $x=>$xNull)
if( $x < $y ){ // On affiche que sous la diagonale
$idY = $file['contacts'][$y]['id'] - $offset;
$idX = $file['contacts'][$x]['id'] - $offset;
// Si relation alter-alter
$relationXY = isset($matrice[$y]) && in_array($x, $matrice[$y])
|| ( isset($matrice[$x]) && in_array($y, $matrice[$x]) );
$file['relations'][] = [
'idA' => $offset + $x,
'idB' => $offset + $y,
$subject_set['relations'][] = [
'idA' => $finalid[$x],
'idB' => $finalid[$y],
'type' => $relationXY ? 1 : 0 // 0->aucune relation 1->relation alter alter
];
@ -965,25 +928,25 @@
}
/* [6] On enregistre tout dans 'lightdb'
/* [6] On les données du sujet
=========================================================*/
$db = new lightdb('facebook_db');
$db->insert( $subject_id, $file );
$db->close();
$subjectdb->insert($subject_id, $subject_set);
/* [7] On enregistre les données des contacts
=========================================================*/
/* (1) On enregistre chaque contact */
foreach($file['contacts'] as $c=>$contactData)
$contactdb->insert($contactData['id'], $contactData);
/* [7] On met à jour le nouvel ID unique
=========================================================*/
// $maxId += $offset;
rewind($funiq); // On revient au début du fichier
fwrite($funiq, $maxId); // On écrit la nouvelle valeur (forcément plus grande)
flock($funiq, LOCK_UN); // On débloque le verrou
fclose($funiq);
// /* [8] On supprime le fichier temporaire si existe
// =========================================================*/
// if( file_exists($tmpfile) )
// unlink($tmpfile);
/* [9] Gestion du retour
=========================================================*/

View File

@ -38,7 +38,7 @@
/* [1] On récupére la liste des sujets
=========================================================*/
/* (1) On initialise et ouvre la bd */
$db = new lightdb('survey_db');
$db = new lightdb('subject');
$ids = array_keys( $db->index() );
/* (2) On récupère tous les sujets */
@ -47,37 +47,18 @@
$sub['creation'] = date('d/m/Y H:i:s', $sub['creation']);
$subjects[$id] = $sub;
}
$db->close();
/* [2] On récupére la liste des sujets pour PHONE
=========================================================*/
/* (1) On initialise et ouvre la bd */
$db = new lightdb('phone_db');
$ids = array_keys( $db->index() );
$db->close();
/* (2) Si un des sujets de 'survey' est dans PHONE, on ajoute la mention */
foreach($subjects as $id=>$data)
if( in_array($id, $ids) ) // Si dans phone
/* (3) Si enquête PHONE passée */
if( isset($sub['surveys']) && is_array($sub['surveys']) && in_array('phone', $sub['surveys']) )
$subjects[$id]['phone'] = true;
/* [3] On récupére la liste des sujets pour FACEBOOK
=========================================================*/
/* (1) On initialise et ouvre la bd */
$db = new lightdb('facebook_db');
$ids = array_keys( $db->index() );
$db->close();
/* (2) Si un des sujets de 'survey' est dans FACBEOOK, on ajoute la mention */
foreach($subjects as $id=>$data)
if( in_array($id, $ids) ) // Si dans facebook
/* (4) Si enquête FACEBOOK passée */
if( isset($sub['surveys']) && is_array($sub['surveys']) && in_array('facebook', $sub['surveys']) )
$subjects[$id]['facebook'] = true;
}
$db->close();
/* [4] Gestion du retour
=========================================================*/
@ -189,7 +170,8 @@
$data = [ 'subject' => [
'id' => $newId,
'name' => $name,
'creation' => time()
'creation' => time(),
'surveys' => []
]];
/* [2] On crée le sujet dans SURVEYS
@ -256,7 +238,7 @@
/* [1] On récupére la liste des sujets
=========================================================*/
/* (1) On initialise et ouvre la bd */
$db = new lightdb('survey_db');
$db = new lightdb('subject');
$ids = array_keys( $db->index() );
/* (2) On récupère tous les sujets */
@ -266,41 +248,18 @@
$sub['creation'] = date('d/m/Y H:i:s', $sub['creation']);
$subjects[$id] = $sub;
/* (3) Si enquête PHONE passée */
if( isset($sub['surveys']) && is_array($sub['surveys']) && in_array('phone', $sub['surveys']) )
$subjects[$id]['phone'] = true;
/* (4) Si enquête FACEBOOK passée */
if( isset($sub['surveys']) && is_array($sub['surveys']) && in_array('facebook', $sub['surveys']) )
$subjects[$id]['facebook'] = true;
}
}
$db->close();
/* [2] On récupére la liste des sujets pour PHONE
=========================================================*/
/* (1) On initialise et ouvre la bd */
$db = new lightdb('phone_db');
$ids = array_keys( $db->index() );
$db->close();
/* (2) Si un des sujets de 'survey' est dans PHONE, on ajoute la mention */
foreach($subjects as $id=>$data)
if( in_array($id, $ids) ) // Si dans phone
$subjects[$id]['phone'] = true;
/* [3] On récupére la liste des sujets pour FACEBOOK
=========================================================*/
/* (1) On initialise et ouvre la bd */
$db = new lightdb('facebook_db');
$ids = array_keys( $db->index() );
$db->close();
/* (2) Si un des sujets de 'survey' est dans FACBEOOK, on ajoute la mention */
foreach($subjects as $id=>$data)
if( in_array($id, $ids) ) // Si dans facebook
$subjects[$id]['facebook'] = true;
/* [4] Retour des données
=========================================================*/
return [

View File

View File

@ -1 +1 @@
[]
[]

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"1":{"line":0,"hash":"ae55953b70b63b6665ea13aef65aef8da8b8c834"},"3":{"line":1,"hash":"e264f35e79e354f1dcadc0bc6b9c2b07dc214ee2"}}
[]

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
{"3":{"line":0,"hash":"e9aff02e50eb56a848c3580c8a119a5cbe0ec64b"},"1":{"line":1,"hash":"99e868e35cdf0e36df88a54a7f03f6eff8966cf0"}}
[]

View File

@ -0,0 +1,7 @@
{"subject":{"id":1,"name":"Caroline", "surveys": [], "creation":1464788890}}
{"subject":{"id":2,"name":"Cl\u00e9ment", "surveys": [], "creation":1464788893}}
{"subject":{"id":3,"name":"Coralie", "surveys": [], "creation":1464788897}}
{"subject":{"id":4,"name":"Laurent", "surveys": [], "creation":1464788899}}
{"subject":{"id":5,"name":"Emilie", "surveys": [], "creation":1464788903}}
{"subject":{"id":6,"name":"C\u00e9line", "surveys": [], "creation":1464788905}}
{"subject":{"id":7,"name":"Pierre", "surveys": [], "creation":1464788908}}

View File

@ -1 +1 @@
[]
{"2":{"line":0,"hash":"8192621a7f0013e137e63edffdadea6ab7f69565"},"3":{"line":1,"hash":"a7b9d5cf6cfb41c0b100d91d053032bdad3a80da"},"4":{"line":2,"hash":"ef73002b8217c3c3b87a62b8ae4c69b3994c114f"},"5":{"line":3,"hash":"5cf77d4e920f1b418bf78484bc1766fb84baabb9"},"6":{"line":4,"hash":"356e841ad04cb0f553fe47eab88bf550d6853c60"},"7":{"line":5,"hash":"7d070210aed5df40ee7e2ca4b54f29c672d32a89"},"8":{"line":6,"hash":"9e4936de2cf03d46135bbac3589a1e3ce68fb406"}}

View File

@ -1,8 +0,0 @@
{"subject":{"id":1,"name":"Caroline","creation":1464788890}}
{"subject":{"id":2,"name":"Cl\u00e9ment","creation":1464788893}}
{"subject":{"id":3,"name":"Coralie","creation":1464788897}}
{"subject":{"id":4,"name":"Laurent","creation":1464788899}}
{"subject":{"id":5,"name":"Emilie","creation":1464788903}}
{"subject":{"id":6,"name":"C\u00e9line","creation":1464788905}}
{"subject":{"id":7,"name":"Pierre","creation":1464788908}}
{"subject":{"id":8,"name":"Boris","creation":1464788910}}

View File

@ -1 +1 @@
{"1":{"line":0,"hash":"9798c2b945e222c48bff804d9819c0d98e88d257"},"2":{"line":1,"hash":"8192621a7f0013e137e63edffdadea6ab7f69565"},"3":{"line":2,"hash":"a7b9d5cf6cfb41c0b100d91d053032bdad3a80da"},"4":{"line":3,"hash":"ef73002b8217c3c3b87a62b8ae4c69b3994c114f"},"5":{"line":4,"hash":"5cf77d4e920f1b418bf78484bc1766fb84baabb9"},"6":{"line":5,"hash":"356e841ad04cb0f553fe47eab88bf550d6853c60"},"7":{"line":6,"hash":"7d070210aed5df40ee7e2ca4b54f29c672d32a89"},"8":{"line":7,"hash":"9e4936de2cf03d46135bbac3589a1e3ce68fb406"}}
[]

View File

@ -1 +1 @@
3903
4163

View File

@ -36,6 +36,8 @@ var tmpSubjectSearchListener = function(e){
/* (2) On effectue la requête */
api.send(request, function(response){
console.warn(response);
// Si erreur
if( response.ModuleError != 0 ){
Notification.error('Erreur', 'La recherche a échoué.')

View File

@ -1,5 +1,5 @@
var sField,sSubmit,sList,pSubjectManager=null,pContactManager=null,pMiniManager=null,pFicheManager=null,pMatriceManager=null,fSubjectManager=null,fContactManager=null,fMiniManager=null,fFicheManager=null,fMatriceManager=null,input_ts=Date.now();sField=$("#search-field");sSubmit=$("#search-subject");sList=$('section[data-sublink="survey"] ul[data-list]');
var tmpSubjectSearchListener=function(a){api.send({path:"subject/search",name:sField.value},function(a){if(0!=a.ModuleError)return Notification.error("Erreur","La recherche a \u00e9chou\u00e9."),!1;console.log(a);var c=[],g;for(g in a.results)c.push("<li data-element data-id='"+g+"'>"),c.push("<div data-user><span>SUJET</span></div>"),c.push("<div> <span><input type='text' readonly style='text-align: center' onclick='this.select()' class='flag' value='"+g+"'></span> </div>"),c.push("<div> <span data-prefix='Nom'>"+
var tmpSubjectSearchListener=function(a){api.send({path:"subject/search",name:sField.value},function(a){console.warn(a);if(0!=a.ModuleError)return Notification.error("Erreur","La recherche a \u00e9chou\u00e9."),!1;console.log(a);var c=[],g;for(g in a.results)c.push("<li data-element data-id='"+g+"'>"),c.push("<div data-user><span>SUJET</span></div>"),c.push("<div> <span><input type='text' readonly style='text-align: center' onclick='this.select()' class='flag' value='"+g+"'></span> </div>"),c.push("<div> <span data-prefix='Nom'>"+
a.results[g].name+"</span> </div>"),c.push("<div> <span data-prefix='Cr\u00e9ation'>"+a.results[g].creation+"</span> </div>"),c.push("<div> <span><input type='checkbox' id='s_"+g+"' "+(null!=a.results[g].phone?"checked":"")+" disabled><label for='s_"+g+"'>Cellulaire</label>"),c.push("</span> </div>"),c.push("<div> <span><input type='checkbox' id='s_"+g+"' "+(null!=a.results[g].facebook?"checked":"")+" disabled><label for='s_"+g+"'>Facebook</label>"),c.push("</span> </div>"),c.push("</li>");sList.innerHTML=
c.join("")})};sSubmit.addEventListener("click",tmpSubjectSearchListener,!1);sField.addEventListener("keypress",function(a){13===a.keyCode&&tmpSubjectSearchListener(a)},!1);tmpSubjectSearchListener();
var pAlready=0,pLoaded=[0,0,0,0,0],phoneRoutine=function(){!Math.min.apply(Math,pLoaded)|pAlready||(pAlready=1,console.groupEnd(),console.group("[phone] Initialization"),pSubjectManager=new inputPhoneSubject($('[data-sublink="phone"] article.subject-panel [data-name="subject_id"]'),$('[data-sublink="phone"] article.subject-panel [data-name="submit"]')),pSubjectManager.attach(pDynamicUpdate),pContactManager=new inputPhoneContact($('[data-sublink="phone"] article.contact-panel'),$('[data-sublink="phone"] #p_nav-contact')),