Service Veolia : Logger

This commit is contained in:
Michael RICOIS 2017-02-10 14:30:57 +01:00
parent 9106f9953a
commit ced20326a5
2 changed files with 32 additions and 32 deletions

View File

@ -27,7 +27,7 @@ class Entreprise extends Scores_Ws_Server
} }
$forceVerif = false; $forceVerif = false;
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(); $tabRet = array();
$siret = trim($siret); $siret = trim($siret);
@ -45,12 +45,12 @@ class Entreprise extends Scores_Ws_Server
$this->sendError('1020'); $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(); $iInsee = new Metier_Insee_MInsee();
$entrep = $iInsee->getIdentiteEntreprise($siren, $nic, $id, $forceVerif, false); $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']) ) { 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'); $this->sendError('1020');
} }
@ -176,7 +176,7 @@ class Entreprise extends Scores_Ws_Server
$identite->DateMajANN = $entrep['dateMajANN']; //@todo : date $identite->DateMajANN = $entrep['dateMajANN']; //@todo : date
$identite->DateMajID = $entrep['dateMajIdentite']; //@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); $this->wsLog('identite',$siret,$id);
return $identite; return $identite;
@ -339,7 +339,7 @@ class Entreprise extends Scores_Ws_Server
{ {
$this->authenticate(); $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($adresse)) $adresse = '';
if (empty($codePostal)) $codePostal = ''; if (empty($codePostal)) $codePostal = '';
@ -403,7 +403,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"; $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); @fwrite($fp, $str.PHP_EOL);
@fclose($fp); @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->nbReponses = count($tabRet);
$result->nbReponsesTotal = $etabs['nbReponsesTotal']; $result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -417,7 +417,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"; $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); @fwrite($fp, $str.PHP_EOL);
@fclose($fp); @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->nbReponses = $etabs['nbReponses'];
$result->nbReponsesTotal = $etabs['nbReponsesTotal']; $result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -438,10 +438,10 @@ class Entreprise extends Scores_Ws_Server
{ {
$this->authenticate(); $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 ){ 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'); $this->sendError('1010');
} }
@ -576,11 +576,11 @@ class Entreprise extends Scores_Ws_Server
$typeId = substr(trim(strtoupper($typeId)),0,1); $typeId = substr(trim(strtoupper($typeId)),0,1);
if ($typeId!='I' && $typeId!='W' && $typeId!='R') { 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'); $this->sendError('1021');
} }
$tabRet = array(); $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') if ($typeId=='W' || $typeId=='R')
{ {
$iInsee = new Metier_Insee_MInsee(); $iInsee = new Metier_Insee_MInsee();
@ -646,11 +646,11 @@ class Entreprise extends Scores_Ws_Server
if (empty($maxRep)) $maxRep = 0; if (empty($maxRep)) $maxRep = 0;
$tabRet = array(); $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); //$assocs=$this->iInsee->rechercheEtab($raisonSociale, $adresse, $codePostal, $ville, $siege, $nbRep, $pertinence);
/** @todo A FAIRE **/ /** @todo A FAIRE **/
if (strlen($telFax)<10 || strlen($telFax)>14) { 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'); $this->sendError('1011');
} }

View File

@ -27,7 +27,7 @@ class Entreprise extends Scores_Ws_Server
} }
$forceVerif = false; $forceVerif = false;
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(); $tabRet = array();
$siret = trim($siret); $siret = trim($siret);
@ -45,12 +45,12 @@ class Entreprise extends Scores_Ws_Server
$this->sendError('1020'); $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(); $iInsee = new Metier_Insee_MInsee();
$entrep = $iInsee->getIdentiteEntreprise($siren, $nic, $id, $forceVerif, false); $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']) ) { 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'); $this->sendError('1020');
} }
@ -176,7 +176,7 @@ class Entreprise extends Scores_Ws_Server
$identite->DateMajANN = $entrep['dateMajANN']; //@todo : date $identite->DateMajANN = $entrep['dateMajANN']; //@todo : date
$identite->DateMajID = $entrep['dateMajIdentite']; //@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); $this->wsLog('identite',$siret,$id);
return $identite; return $identite;
@ -339,7 +339,7 @@ class Entreprise extends Scores_Ws_Server
{ {
$this->authenticate(); $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($adresse)) $adresse = '';
if (empty($codePostal)) $codePostal = ''; if (empty($codePostal)) $codePostal = '';
@ -403,7 +403,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"; $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); @fwrite($fp, $str.PHP_EOL);
@fclose($fp); @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->nbReponses = count($tabRet);
$result->nbReponsesTotal = $etabs['nbReponsesTotal']; $result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -417,7 +417,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"; $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); @fwrite($fp, $str.PHP_EOL);
@fclose($fp); @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->nbReponses = $etabs['nbReponses'];
$result->nbReponsesTotal = $etabs['nbReponsesTotal']; $result->nbReponsesTotal = $etabs['nbReponsesTotal'];
@ -438,10 +438,10 @@ class Entreprise extends Scores_Ws_Server
{ {
$this->authenticate(); $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 ){ 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'); $this->sendError('1010');
} }
@ -576,11 +576,11 @@ class Entreprise extends Scores_Ws_Server
$typeId = substr(trim(strtoupper($typeId)),0,1); $typeId = substr(trim(strtoupper($typeId)),0,1);
if ($typeId!='I' && $typeId!='W' && $typeId!='R') { 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'); $this->sendError('1021');
} }
$tabRet = array(); $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') if ($typeId=='W' || $typeId=='R')
{ {
$iInsee = new Metier_Insee_MInsee(); $iInsee = new Metier_Insee_MInsee();
@ -646,11 +646,11 @@ class Entreprise extends Scores_Ws_Server
if (empty($maxRep)) $maxRep = 0; if (empty($maxRep)) $maxRep = 0;
$tabRet = array(); $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); //$assocs=$this->iInsee->rechercheEtab($raisonSociale, $adresse, $codePostal, $ville, $siege, $nbRep, $pertinence);
/** @todo A FAIRE **/ /** @todo A FAIRE **/
if (strlen($telFax)<10 || strlen($telFax)>14) { 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'); $this->sendError('1011');
} }
@ -716,12 +716,12 @@ class Entreprise extends Scores_Ws_Server
if($nbRep > 200) { $nbRep = 200; } if($nbRep > 200) { $nbRep = 200; }
$departement = $dep; $departement = $dep;
Metier_Util_Log::write('I',"Liste des établissements demandée pour $siren",__LINE__,__FILE__, __FUNCTION__, __CLASS__); $this->logger->info("Liste des établissements demandée pour $siren");
if (strlen($siren)<>9) { 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'); $this->sendError('1010');
} elseif ($siren*1==0) { } 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'); $this->sendError('1010');
} }
@ -767,7 +767,7 @@ class Entreprise extends Scores_Ws_Server
$result[] = $etablissement; $result[] = $etablissement;
} }
} }
Metier_Util_Log::write('I', "Nb Etablissements retournés ($departement, $actif) = ". count($result), __LINE__, __FILE__, __FUNCTION__, __CLASS__); $this->logger->info( "Nb Etablissements retournés ($departement, $actif) = ". count($result));
$this->wsLog('etablissements',$siren); $this->wsLog('etablissements',$siren);
$output = new ListeEtablissementsReturn(); $output = new ListeEtablissementsReturn();
$output->nbReponses = $nbReponses; $output->nbReponses = $nbReponses;