* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Id$ * $Source$ * * Script d'import des retour */ require ("../../master.inc.php"); $dir = DOL_DATA_ROOT."/telephonie/ligne/commande/retour/"; $dirdone = DOL_DATA_ROOT."/telephonie/ligne/commande/retour/traite/"; $dirback = DOL_DATA_ROOT."/telephonie/ligne/commande/retour/backup/"; if (! file_exists($dirback)) { umask(0); if (! @mkdir($dirback, 0755)) { dolibarr_syslog("Erreur: creation '$dir'"); } } $handle=opendir($dir); if ($verbose) dolibarr_syslog("Lecture repertoire $dir"); while (($file = readdir($handle))!==false) { if (is_file($dir.$file)) { if (is_readable($dir.$file)) { if ($verbose) dolibarr_syslog("Lecture $file"); if (! file_exists($dirdone)) { umask(0); if (! @mkdir($dirdone, 0755)) { dolibarr_syslog("Erreur: creation '$dirdone'"); } } /* * On verifie que le fichier n'a pas déjà été traité */ if (! file_exists($dirdone.$file)) { if ( import_file($db, $dir, $file) == 0) { rename($dir.$file, $dirdone.$file); } } else { dolibarr_syslog("Le fichier $file a déjà été traité"); } } else { dolibarr_syslog("Erreur Lecture $file permissions insuffisante"); } } } closedir($handle); /** * * * */ Function import_file($db,$dir,$file) { $error = 0; $line = 0; $hf = fopen ($dir.$file, "r"); if ($db->query("BEGIN")) { while (!feof($hf)) { $cont = fgets($hf, 1024); $tabline = explode(";", $cont); if (substr($tabline, 0, 3) <> 'CLI') { if (sizeof($tabline) == 8) { $numero = $tabline[0]; $mode = $tabline[1]; $situation = $tabline[2]; $date_mise_service = $tabline[3]; $date_resiliation = $tabline[4]; $motif_resiliation = $tabline[5]; $commentaire = $tabline[6]; $fichier = $file; $sql = "INSERT INTO ".MAIN_DB_PREFIX."telephonie_commande_retour "; $sql .= " (cli,mode,situation,date_mise_service,date_resiliation,motif_resiliation,commentaire,fichier) "; $sql .= " VALUES ("; $sql .= "'$numero','$mode','$situation','$date_mise_service','$date_resiliation','$motif_resiliation','$commentaire','$fichier')"; if (! $db->query($sql)) { dolibarr_syslog("Erreur de traitement de ligne"); dolibarr_syslog($db->error()); $error++; } } } $line++; } if ($error == 0) { $db->query("COMMIT"); dolibarr_syslog("COMMIT"); } else { $db->query("ROLLBACK"); dolibarr_syslog("ROLLBACK"); } } fclose($hf); return $error; }