Service Veolia : Logger
This commit is contained in:
parent
9106f9953a
commit
ced20326a5
@ -27,7 +27,7 @@ class Entreprise extends Scores_Ws_Server
|
||||
}
|
||||
$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();
|
||||
$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, 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');
|
||||
}
|
||||
|
||||
@ -176,7 +176,7 @@ class Entreprise extends Scores_Ws_Server
|
||||
$identite->DateMajANN = $entrep['dateMajANN']; //@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;
|
||||
@ -339,7 +339,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 = '';
|
||||
@ -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";
|
||||
@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'];
|
||||
@ -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";
|
||||
@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'];
|
||||
@ -438,10 +438,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');
|
||||
}
|
||||
|
||||
@ -576,11 +576,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();
|
||||
@ -646,11 +646,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');
|
||||
}
|
||||
|
||||
|
@ -27,7 +27,7 @@ class Entreprise extends Scores_Ws_Server
|
||||
}
|
||||
$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();
|
||||
$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, 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');
|
||||
}
|
||||
|
||||
@ -176,7 +176,7 @@ class Entreprise extends Scores_Ws_Server
|
||||
$identite->DateMajANN = $entrep['dateMajANN']; //@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;
|
||||
@ -339,7 +339,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 = '';
|
||||
@ -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";
|
||||
@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'];
|
||||
@ -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";
|
||||
@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'];
|
||||
@ -438,10 +438,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');
|
||||
}
|
||||
|
||||
@ -576,11 +576,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();
|
||||
@ -646,11 +646,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');
|
||||
}
|
||||
|
||||
@ -716,12 +716,12 @@ class Entreprise extends Scores_Ws_Server
|
||||
if($nbRep > 200) { $nbRep = 200; }
|
||||
$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) {
|
||||
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');
|
||||
}
|
||||
|
||||
@ -767,7 +767,7 @@ class Entreprise extends Scores_Ws_Server
|
||||
$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);
|
||||
$output = new ListeEtablissementsReturn();
|
||||
$output->nbReponses = $nbReponses;
|
||||
|
Loading…
Reference in New Issue
Block a user