Service Vwbank : Logger

This commit is contained in:
Michael RICOIS 2017-02-10 14:58:28 +01:00
parent ced20326a5
commit ea4c44d795
2 changed files with 35 additions and 35 deletions

View File

@ -27,7 +27,7 @@ class Entreprise extends Scores_Ws_Server
$forceVerif = false;
$tdeb = microtime(1);
Metier_Util_Log::write('I',"Identités demandée pour siret $siret (id=$id)",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Identités demandée pour siret $siret (id=$id)");
$tabRet = array();
$siret = trim($siret);
@ -45,12 +45,12 @@ class Entreprise extends Scores_Ws_Server
$this->sendError('1020');
}
Metier_Util_Log::write('I', "Avant getIdentiteEntreprise($siren, $nic, $id)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "Avant getIdentiteEntreprise($siren, $nic, $id)");
$iInsee = new Metier_Insee_MInsee();
$entrep = $iInsee->getIdentiteEntreprise($siren, $nic, $id, $forceVerif);
Metier_Util_Log::write('I', "Après getIdentiteEntreprise($siren, $nic, $id)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "Après getIdentiteEntreprise($siren, $nic, $id)");
if (empty($entrep) || empty($entrep['id']) ) {
Metier_Util_Log::write('W', "Siren $siren non présent en base", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren $siren non présent en base");
$this->sendError('1020');
}
@ -89,7 +89,7 @@ class Entreprise extends Scores_Ws_Server
$identite->DateMajRCS = $entrep['DateMajRCS']; //@todo : date
$identite->DateMajID = $entrep['dateMajIdentite']; //@todo : date
Metier_Util_Log::write('I', 'Etablissement retourné = '. $entrep['Nom'], __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( 'Etablissement retourné = '. $entrep['Nom']);
$this->wsLog('identite',$siret,$id);
return $identite;
@ -252,7 +252,7 @@ class Entreprise extends Scores_Ws_Server
{
$this->authenticate();
Metier_Util_Log::write('I',"Recherche Entreprise de $raisonSociale, $adresse, $codePostal $ville (Siège=$siege / Max Rep=$nbRep)",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche Entreprise de $raisonSociale, $adresse, $codePostal $ville (Siège=$siege / Max Rep=$nbRep)");
if (empty($adresse)) $adresse = '';
if (empty($codePostal)) $codePostal = '';
@ -316,7 +316,7 @@ class Entreprise extends Scores_Ws_Server
$str="NbRep=0, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab, ($deb, $nbRep, $maxRep, $siege, $actif, $pertinence, $avecSiren), SiretTrouve=$siretTrouve";
@fwrite($fp, $str.PHP_EOL);
@fclose($fp);
Metier_Util_Log::write('I', "rechercheEtab : AUCUN RESULTAT, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "rechercheEtab : AUCUN RESULTAT, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)");
$result->nbReponses = count($tabRet);
$result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -330,7 +330,7 @@ class Entreprise extends Scores_Ws_Server
$str="NbRep=".$etabs['nbReponses'].", S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab, ($deb, $nbRep, $maxRep, $siege, $actif, $pertinence, $avecSiren), SiretTrouve=$siretTrouve";
@fwrite($fp, $str.PHP_EOL);
@fclose($fp);
Metier_Util_Log::write('I', "rechercheEtab : ".$etabs['nbReponses']." RESULTATS, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "rechercheEtab : ".$etabs['nbReponses']." RESULTATS, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)");
$result->nbReponses = $etabs['nbReponses'];
$result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -351,10 +351,10 @@ class Entreprise extends Scores_Ws_Server
{
$this->authenticate();
Metier_Util_Log::write('I',"Recherche par Siret de $siret (dep=$dep) avec un maximum de $maxRep réponses pour la tranche $deb à $nbRep",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche par Siret de $siret (dep=$dep) avec un maximum de $maxRep réponses pour la tranche $deb à $nbRep");
if ( strlen($siret)!=14 && strlen($siret)!=9 ){
Metier_Util_Log::write('W', "Siren/Siret $siret incorrect", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren/Siret $siret incorrect");
$this->sendError('1010');
}
@ -489,11 +489,11 @@ class Entreprise extends Scores_Ws_Server
$typeId = substr(trim(strtoupper($typeId)),0,1);
if ($typeId!='I' && $typeId!='W' && $typeId!='R') {
Metier_Util_Log::write('I',"Type d'identifiant $typeId inexistant",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Type d'identifiant $typeId inexistant");
$this->sendError('1021');
}
$tabRet = array();
Metier_Util_Log::write('I',"Recherche par identifiant $typeId de $identifiantavec un maximum de $nbRep réponses",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche par identifiant $typeId de $identifiantavec un maximum de $nbRep réponses");
if ($typeId=='W' || $typeId=='R')
{
$iInsee = new Metier_Insee_MInsee();
@ -559,11 +559,11 @@ class Entreprise extends Scores_Ws_Server
if (empty($maxRep)) $maxRep = 0;
$tabRet = array();
Metier_Util_Log::write('I',"Recherche par Tel/Fax de $telFax avec un maximum de $nbRep réponses",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche par Tel/Fax de $telFax avec un maximum de $nbRep réponses");
//$assocs=$this->iInsee->rechercheEtab($raisonSociale, $adresse, $codePostal, $ville, $siege, $nbRep, $pertinence);
/** @todo A FAIRE **/
if (strlen($telFax)<10 || strlen($telFax)>14) {
Metier_Util_Log::write('W', "Tel/Fax $telFax incorrect", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Tel/Fax $telFax incorrect");
$this->sendError('1011');
}

View File

@ -29,7 +29,7 @@ class Entreprise extends Scores_Ws_Server
$forceVerif = false;
$tdeb = microtime(1);
Metier_Util_Log::write('I',"Identités demandée pour siret $siret (id=$id)",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Identités demandée pour siret $siret (id=$id)");
$tabRet = array();
$siret = trim($siret);
@ -47,12 +47,12 @@ class Entreprise extends Scores_Ws_Server
$this->sendError('1020');
}
Metier_Util_Log::write('I', "Avant getIdentiteEntreprise($siren, $nic, $id)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "Avant getIdentiteEntreprise($siren, $nic, $id)");
$iInsee = new Metier_Insee_MInsee();
$entrep = $iInsee->getIdentiteEntreprise($siren, $nic, $id, $forceVerif, false);
Metier_Util_Log::write('I', "Après getIdentiteEntreprise($siren, $nic, $id)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "Après getIdentiteEntreprise($siren, $nic, $id)");
if (empty($entrep) || empty($entrep['id']) ) {
Metier_Util_Log::write('W', "Siren $siren non présent en base", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren $siren non présent en base");
$this->sendError('1020');
}
@ -106,7 +106,7 @@ class Entreprise extends Scores_Ws_Server
if ($nbPrivileges > 0) {
$identite->Privileges = true;
}
Metier_Util_Log::write('I', 'Etablissement retourné = '. $entrep['Nom'], __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( 'Etablissement retourné = '. $entrep['Nom']);
$this->wsLog('identite',$siret,$id);
return $identite;
@ -127,13 +127,13 @@ class Entreprise extends Scores_Ws_Server
//Initialisation
if (empty($histo)) { $histo = false; }
Metier_Util_Log::write('I',"Dirigeants demandée pour $siren",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Dirigeants demandée pour $siren");
$tabRet = array();
if (strlen($siren)<>9) {
Metier_Util_Log::write('W', "Siren/Siret $siren incorrect", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren/Siret $siren incorrect");
$this->sendError('1010');
} elseif ($siren*1==0) {
Metier_Util_Log::write('W', "Siren $siren inexistant", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren $siren inexistant");
$this->sendError('1010');
}
@ -159,7 +159,7 @@ class Entreprise extends Scores_Ws_Server
$liste[] = $dirigeant;
}
$this->wsLog('dirigeants',$siren,$option);
Metier_Util_Log::write('I', 'Nb Dirigeants retournés = '. count($dirs), __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( 'Nb Dirigeants retournés = '. count($dirs));
$output = new DirigeantsReturn();
$output->result = $liste;
return $output;
@ -331,11 +331,11 @@ class Entreprise extends Scores_Ws_Server
$typeId = substr(trim(strtoupper($typeId)),0,1);
if ($typeId!='I' && $typeId!='W' && $typeId!='R') {
Metier_Util_Log::write('I',"Type d'identifiant $typeId inexistant",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Type d'identifiant $typeId inexistant");
$this->sendError('1021');
}
$tabRet = array();
Metier_Util_Log::write('I',"Recherche par identifiant $typeId de $identifiant avec un maximum de $nbRep réponses",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche par identifiant $typeId de $identifiant avec un maximum de $nbRep réponses");
if ($typeId=='W' || $typeId=='R')
{
$iInsee = new Metier_Insee_MInsee();
@ -402,11 +402,11 @@ class Entreprise extends Scores_Ws_Server
if (!in_array($actif, array(0,1,2))) $actif = 2;
$tabRet = array();
Metier_Util_Log::write('I',"Recherche par Tel/Fax de $telFax avec un maximum de $nbRep réponses",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche par Tel/Fax de $telFax avec un maximum de $nbRep réponses");
//$assocs=$this->iInsee->rechercheEtab($raisonSociale, $adresse, $codePostal, $ville, $siege, $nbRep, $pertinence);
/** @todo A FAIRE **/
if (strlen($telFax)<10 || strlen($telFax)>14) {
Metier_Util_Log::write('W', "Tel/Fax $telFax incorrect", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Tel/Fax $telFax incorrect");
$this->sendError('1011');
}
@ -470,7 +470,7 @@ class Entreprise extends Scores_Ws_Server
{
$this->authenticate();
Metier_Util_Log::write('I',"Recherche Entreprise de $raisonSociale, $adresse, $codePostal $ville (Siège=$siege / Max Rep=$nbRep)",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche Entreprise de $raisonSociale, $adresse, $codePostal $ville (Siège=$siege / Max Rep=$nbRep)");
if (empty($adresse)) $adresse = '';
if (empty($codePostal)) $codePostal = '';
@ -528,7 +528,7 @@ class Entreprise extends Scores_Ws_Server
$str="NbRep=0, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab, ($deb, $nbRep, $maxRep, $siege, $actif, $pertinence, $avecSiren), SiretTrouve=$siretTrouve";
fwrite($fp, $str.PHP_EOL);
fclose($fp);
Metier_Util_Log::write('I', "rechercheEtab : AUCUN RESULTAT, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "rechercheEtab : AUCUN RESULTAT, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)");
$result->nbReponses = count($tabRet);
$result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -542,7 +542,7 @@ class Entreprise extends Scores_Ws_Server
$str="NbRep=".$etabs['nbReponses'].", S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab, ($deb, $nbRep, $maxRep, $siege, $actif, $pertinence, $avecSiren), SiretTrouve=$siretTrouve";
fwrite($fp, $str.PHP_EOL);
fclose($fp);
Metier_Util_Log::write('I', "rechercheEtab : ".$etabs['nbReponses']." RESULTATS, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->info( "rechercheEtab : ".$etabs['nbReponses']." RESULTATS, S=$raisonSociale, R=$adresse, L=$codePostal, V=$ville, A=$ape_etab ($siege, $actif, $deb, $nbRep, $maxRep, $pertinence, $avecSiren)");
$result->nbReponses = $etabs['nbReponses'];
$result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -565,10 +565,10 @@ class Entreprise extends Scores_Ws_Server
{
$this->authenticate();
Metier_Util_Log::write('I',"Recherche par Siret de $siret (dep=$dep) avec un maximum de $maxRep réponses pour la tranche $deb à $nbRep",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Recherche par Siret de $siret (dep=$dep) avec un maximum de $maxRep réponses pour la tranche $deb à $nbRep");
if ( strlen($siret)!=14 && strlen($siret)!=9 ){
Metier_Util_Log::write('W', "Siren/Siret $siret incorrect", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren/Siret $siret incorrect");
$this->sendError('1010');
}
@ -719,12 +719,12 @@ class Entreprise extends Scores_Ws_Server
$tabAct = $tabPar = array();
Metier_Util_Log::write('I',"Liens entreprises demandés pour $siren",__LINE__,__FILE__, __FUNCTION__, __CLASS__);
$this->logger->info("Liens entreprises demandés pour $siren");
if (strlen($siren)<>9){
Metier_Util_Log::write('W', "Siren $siren incorrect", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren $siren incorrect");
$this->sendError('1010');
} elseif ($siren*1==0) {
Metier_Util_Log::write('W', "Siren $siren inexistant", __LINE__, __FILE__, __FUNCTION__, __CLASS__);
$this->logger->warning( "Siren $siren inexistant");
$this->sendError('1010');
}