input/phone en refactor avec nouveau système de storage #lightdb
This commit is contained in:
parent
93112cdd44
commit
52740e1ae4
|
@ -21,10 +21,10 @@
|
||||||
* @return subject_id<int> Retourne l'id sujet de l'enquête
|
* @return subject_id<int> Retourne l'id sujet de l'enquête
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public static function xphone($params){
|
public static function phone($params){
|
||||||
extract($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+' );
|
$funiq = fopen( __BUILD__.'/lightdb/storage/uniqid', 'r+' );
|
||||||
flock($funiq, LOCK_EX); // On verrouille le fichier
|
flock($funiq, LOCK_EX); // On verrouille le fichier
|
||||||
|
@ -37,141 +37,90 @@
|
||||||
$offset = intval($uniqid) + 1;
|
$offset = intval($uniqid) + 1;
|
||||||
|
|
||||||
// on enregistre l'id du sujet
|
// on enregistre l'id du sujet
|
||||||
$subject_id = $subject['subject_id'];
|
$subject_id = intval($subject['subject_id']);
|
||||||
|
|
||||||
// Contiendra la valeur de l'id maximum
|
// Contiendra la valeur de l'id maximum
|
||||||
$maxId = $offset;
|
$maxId = $offset;
|
||||||
|
|
||||||
|
|
||||||
|
/* [2] On initialise nos variables (lightdb + autres)
|
||||||
|
|
||||||
/* [1] On initialise nos storages
|
|
||||||
=========================================================*/
|
=========================================================*/
|
||||||
|
/* (1) Fichiers de sortie */
|
||||||
$file = [
|
$file = [
|
||||||
"subject" => "",
|
"subject" => "",
|
||||||
"contacts" => [],
|
|
||||||
"relations" => []
|
"relations" => []
|
||||||
];
|
];
|
||||||
|
|
||||||
|
/* (2) Bases de données */
|
||||||
|
$subjectdb = new lightdb('subject');
|
||||||
|
$contactdb = new lightdb('contact');
|
||||||
|
|
||||||
|
|
||||||
|
/* [3] Données du sujet
|
||||||
|
|
||||||
|
|
||||||
/* [2] On enregistre les données du sujet
|
|
||||||
=========================================================*/
|
=========================================================*/
|
||||||
/* (1) On crée le sujet */
|
$subject_set = $subjectdb->fetch($subject_id);
|
||||||
$file['subject'] = [ 'id' => $subject_id ];
|
|
||||||
|
|
||||||
/* (2) On récupère ses contacts facebook */
|
/* (1) Si le sujet n'existe pas -> ERROR */
|
||||||
// {2.1} On récupère les données du sujet //
|
if( $subject_set === false )
|
||||||
$lfacebook = new lightdb('facebook_db');
|
return ['ModuleError'=>ManagerError::UnreachableResource];
|
||||||
$lfacebook = $lfacebook->fetch($subject_id);
|
|
||||||
|
|
||||||
// {2.2} si n'existe pas, on a un tableau vide //
|
/* (2) Initialisation des contacts si vide */
|
||||||
if( $lfacebook === false )
|
if( !isset($subject_set['contacts']) )
|
||||||
$lfacebook = [ 'contacts' => [] ];
|
$subject_set['contacts'] = [];
|
||||||
|
|
||||||
if( !isset($lfacebook['contacts']) )
|
/* (3) Initialisation des relations si vide */
|
||||||
$lfacebook['contacts'] = [];
|
if( !isset($subject_set['relations']) )
|
||||||
|
$subject_set['relations'] = [];
|
||||||
|
|
||||||
|
/* (4) On récupère les noms des contacts */
|
||||||
|
$contactsById = []; // idContact -> nomContact
|
||||||
|
|
||||||
/* (3) On récupère ses contacts lab-surveys */
|
foreach($subject_set['contacts'] as $contactId){
|
||||||
// {3.1} On récupère les données du sujet //
|
$contactId = intval($contactId);
|
||||||
$lsurvey = new lightdb('survey_db');
|
$contactData = $contactdb->fetch( $contactId );
|
||||||
$lsurvey = $lsurvey->fetch($subject_id);
|
|
||||||
|
|
||||||
// {3.2} si n'existe pas, on a un tableau vide //
|
$contactsById[$contactId] = $contactData['name'];
|
||||||
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($lfacebook['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'];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* [4] On saisit les fiches + les contacts des fiches
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* [3] On enregistre les contacts des FICHES
|
|
||||||
=========================================================*/
|
=========================================================*/
|
||||||
$contactsDone = [
|
$contactsDone = [
|
||||||
"existing" => [], // Contacts exportés déja enregistrés
|
"existing" => [], // Contacts exportés déja enregistrés
|
||||||
"username" => [] // Nouveaux contacts 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){
|
foreach($fiches as $f=>$ficheData){
|
||||||
/* (1) On récupère les données du contact associé */
|
/* (1) On récupère les données du contact associé */
|
||||||
if( !isset($contacts[$ficheData['uid']]) )
|
if( !isset($contacts[$ficheData['contact']]) )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
$contact = $contacts[ $ficheData['uid'] ];
|
$contact = $contacts[ $ficheData['contact'] ];
|
||||||
|
|
||||||
/* (2) Si le contact a été importé d'une autre enquête */
|
/* (2) Si le contact a été importé d'une autre enquête */
|
||||||
if( isset($contact['existing']) && is_numeric($contact['existing']) ){
|
if( isset($contact['existing']) && is_numeric($contact['existing']) ){
|
||||||
|
|
||||||
$newId = (int) $contact['existing'];
|
$newId = (int) $contact['existing'];
|
||||||
$uname = $exportedU[intval($contact['existing'])];
|
$uname = $contactsById[ 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']) )
|
$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;
|
break;
|
||||||
|
|
||||||
/* (3) Si nouveau contact */
|
/* (3) Si nouveau contact */
|
||||||
}else{
|
}else{
|
||||||
$newId = (int) ($offset+$ficheData['uid']);
|
|
||||||
|
$newId = (int) ($offset+$contact['uid']);
|
||||||
$uname = $contact['username'];
|
$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']) )
|
if( in_array($contact['username'], $contactsDone['username']) )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -180,8 +129,8 @@
|
||||||
if( $newId > $maxId )
|
if( $newId > $maxId )
|
||||||
$maxId = (int) $newId;
|
$maxId = (int) $newId;
|
||||||
|
|
||||||
// On remplit les données qui iront dans le fichier pour ce contact
|
/* (5) On enregistre les données du contact */
|
||||||
$file['contacts'][] = [
|
$contactdb->insert($newId, [
|
||||||
'id' => $newId,
|
'id' => $newId,
|
||||||
'name' => $uname,
|
'name' => $uname,
|
||||||
'sexe' => $ficheData['sexe'],
|
'sexe' => $ficheData['sexe'],
|
||||||
|
@ -200,10 +149,14 @@
|
||||||
'freq' => $ficheData['freq'],
|
'freq' => $ficheData['freq'],
|
||||||
'connect' => $ficheData['connect'],
|
'connect' => $ficheData['connect'],
|
||||||
'connectExtra' => $ficheData['connectSpecial']
|
'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
|
// On enregistre la relation avec EGO
|
||||||
$file['relations'][] = [
|
$subject_set['relations'][] = [
|
||||||
'idA' => $subject_id,
|
'idA' => $subject_id,
|
||||||
'idB' => $newId,
|
'idB' => $newId,
|
||||||
'type' => ($f<20) ? 4 : 5 // 4->appels 5->sms
|
'type' => ($f<20) ? 4 : 5 // 4->appels 5->sms
|
||||||
|
@ -219,29 +172,38 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* [5] On enregistre les mini + les contacts des mini
|
||||||
/* [4] On enregistre les contacts des MINI
|
|
||||||
=========================================================*/
|
=========================================================*/
|
||||||
foreach($mini as $miniData){
|
foreach($mini as $miniData){
|
||||||
/* (1) On récupère les données du contact associé */
|
/* (1) On récupère les données du contact associé */
|
||||||
if( !isset($contacts[$miniData['uid']]) )
|
if( !isset($contacts[$miniData['contact']]) )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
$contact = $contacts[ $miniData['uid'] ];
|
$contact = $contacts[ $miniData['contact'] ];
|
||||||
|
|
||||||
/* (2) Si le contact a été importé d'une autre enquête */
|
/* (2) Si le contact a été importé d'une autre enquête */
|
||||||
if( isset($contact['existing']) && is_numeric($contact['existing']) ){
|
if( isset($contact['existing']) && is_numeric($contact['existing']) ){
|
||||||
|
|
||||||
$newId = (int) $contact['existing'];
|
$newId = (int) $contact['existing'];
|
||||||
$uname = $exportedU[intval($contact['existing'])];
|
$uname = $contactsById[ 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']) )
|
$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;
|
break;
|
||||||
|
|
||||||
/* (3) Si nouveau contact */
|
/* (3) Si nouveau contact */
|
||||||
}else{
|
}else{
|
||||||
|
|
||||||
$newId = (int) ($offset+$miniData['uid']);
|
$newId = (int) ($offset+$miniData['uid']);
|
||||||
$uname = $contact['username'];
|
$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']) )
|
if( in_array($contact['username'], $contactsDone['username']) )
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -252,7 +214,7 @@
|
||||||
|
|
||||||
|
|
||||||
// On remplit les données qui iront dans le fichier pour ce contact
|
// On remplit les données qui iront dans le fichier pour ce contact
|
||||||
$file['contacts'][] = [
|
$contactdb->insert($newId, [
|
||||||
'id' => $newId,
|
'id' => $newId,
|
||||||
'name' => $uname,
|
'name' => $uname,
|
||||||
'sexe' => $miniData['sexe'],
|
'sexe' => $miniData['sexe'],
|
||||||
|
@ -260,10 +222,14 @@
|
||||||
'studies1' => $miniData['studies'],
|
'studies1' => $miniData['studies'],
|
||||||
'reltype' => ($miniData['reltype']==10) ? $miniData['reltypeSpecial'] : $miniData['reltype'], // si 'autre' -> valeur, sinon le code
|
'reltype' => ($miniData['reltype']==10) ? $miniData['reltypeSpecial'] : $miniData['reltype'], // si 'autre' -> valeur, sinon le code
|
||||||
'dist' => $miniData['loc']
|
'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
|
// On enregistre la relation avec EGO
|
||||||
$file['relations'][] = [
|
$subject_set['relations'][] = [
|
||||||
'idA' => $subject_id,
|
'idA' => $subject_id,
|
||||||
'idB' => $newId,
|
'idB' => $newId,
|
||||||
'type' => 2 // relation cellulaire mineure
|
'type' => 2 // relation cellulaire mineure
|
||||||
|
@ -280,15 +246,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* [6] On enregistre les relations de la MATRICE
|
||||||
/* [5] On enregistre les relations de la MATRICE
|
|
||||||
=========================================================*/
|
=========================================================*/
|
||||||
$clen = count($file['contacts']);
|
$clen = count($finalid);
|
||||||
|
|
||||||
/* (1) On récupére les ids des contacts */
|
/* (1) On récupére les ids des contacts */
|
||||||
$cIdList = [];
|
$cIdList = [];
|
||||||
foreach($file['contacts'] as $c=>$contact){
|
foreach($finalid as $lastid=>$newid){
|
||||||
$id = (int) $c;
|
$id = (int) $lastid;
|
||||||
|
|
||||||
if( !in_array($id, $cIdList) )
|
if( !in_array($id, $cIdList) )
|
||||||
$cIdList[$id] = null;
|
$cIdList[$id] = null;
|
||||||
|
@ -296,31 +261,43 @@
|
||||||
|
|
||||||
ksort($cIdList);
|
ksort($cIdList);
|
||||||
|
|
||||||
|
|
||||||
/* (2) On remplit les relations */
|
/* (2) On remplit les relations */
|
||||||
foreach($cIdList as $y=>$yNull){
|
foreach($cIdList as $y=>$yNull){
|
||||||
foreach($cIdList as $x=>$xNull)
|
foreach($cIdList as $x=>$xNull)
|
||||||
if( $x < $y ){ // On affiche que sous la diagonale
|
if( $x < $y ){ // On affiche que sous la diagonale
|
||||||
|
|
||||||
$idY = $file['contacts'][$y]['id'] - $offset;
|
$idY = $finalid[$y]['id'] - $offset;
|
||||||
$idX = $file['contacts'][$x]['id'] - $offset;
|
$idX = $finalid[$x]['id'] - $offset;
|
||||||
|
|
||||||
// Si relation alter-alter
|
// Si relation alter-alter
|
||||||
$relationXY = isset($matrice[$y]) && in_array($x, $matrice[$y])
|
$relationXY = isset($matrice[$y]) && in_array($x, $matrice[$y])
|
||||||
|| ( isset($matrice[$x]) && in_array($y, $matrice[$x]) );
|
|| ( isset($matrice[$x]) && in_array($y, $matrice[$x]) );
|
||||||
|
|
||||||
array_push($file['relations'], [
|
$subject_set['relations'][] = [
|
||||||
'idA' => $offset + $x,
|
'idA' => $offset + $x,
|
||||||
'idB' => $offset + $y,
|
'idB' => $offset + $y,
|
||||||
'type' => $relationXY ? 1 : 0 // 0->aucune relation 1->relation alter alter
|
'type' => $relationXY ? 1 : 0 // 0->aucune relation 1->relation alter alter
|
||||||
]);
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* [6] On enregistre tout dans 'lightdb'
|
/* [6] On les données du sujet
|
||||||
=========================================================*/
|
=========================================================*/
|
||||||
|
$subjectdb->insert($subject_id, $subject_set);
|
||||||
|
|
||||||
|
|
||||||
|
/* [7] On enregistre les données des contacts
|
||||||
|
=========================================================*/
|
||||||
|
/* (1) Pour chaque données de contact enregistré */
|
||||||
|
foreach($file['contacts'] as $c=>$contactData){
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$db = new lightdb('phone_db');
|
$db = new lightdb('phone_db');
|
||||||
$db->insert( $subject_id, $file );
|
$db->insert( $subject_id, $file );
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
|
@ -77,17 +77,16 @@
|
||||||
|
|
||||||
public function close(){ $this->driver = null; }
|
public function close(){ $this->driver = null; }
|
||||||
|
|
||||||
/* RETOURNE LA LISTE DES INDEX
|
|
||||||
|
|
||||||
|
|
||||||
|
/* RETOURNE UN INDEX
|
||||||
*
|
*
|
||||||
* @i<String> Index pour lequel on veut la ligne et le hash
|
* @i<String> [OPT] Index pour lequel on veut la ligne et le hash
|
||||||
*
|
*
|
||||||
* @return Index<Array> Tableau associatif contenant le hash et la ligne
|
* @return Index<Array> Tableau associatif contenant le hash et la ligne
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function index($i=null){
|
public function index($i=null){
|
||||||
return is_numeric($i) ? $this->index : $this->index;
|
return is_numeric($i) ? $this->index[$i] : $this->index;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
Contient les équivalences :
|
||||||
|
|
||||||
|
id_subject => {
|
||||||
|
"subject": [données du sujet]
|
||||||
|
"contact": [liste des id des contacts],
|
||||||
|
"relations": [liste des relations]
|
||||||
|
}
|
|
@ -1,26 +0,0 @@
|
||||||
### Notation
|
|
||||||
|
|
||||||
> lightdb `a` take the value `c` at key `b`
|
|
||||||
> "aL:b -> c"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### I. New subject survey
|
|
||||||
|
|
||||||
INPUT: id_subject, contacts[], relations[]
|
|
||||||
LIGHTDB: subjectL, contactL,
|
|
||||||
BEGIN
|
|
||||||
```
|
|
||||||
|
|
||||||
// initialisation des données du sujet (contact par name)
|
|
||||||
subjectL:id_subject -> [ ]
|
|
||||||
|
|
||||||
// On enregistre chaque contact
|
|
||||||
foreach contacts[] as i=>contact
|
|
||||||
contactL:uniqid -> contact[i]
|
|
||||||
subjectL:id_subject[contact[i].name] = uniqid++;
|
|
||||||
|
|
||||||
|
|
||||||
```
|
|
||||||
END
|
|
|
@ -7,8 +7,7 @@
|
||||||
$sl = new lightdb('subject');
|
$sl = new lightdb('subject');
|
||||||
$cl = new lightdb('contact');
|
$cl = new lightdb('contact');
|
||||||
|
|
||||||
echo "New subject survey\nT";
|
var_dump("New subject survey");
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue