batch/bin/sourceJalTable.php
2017-02-17 15:25:14 +01:00

162 lines
5.6 KiB
PHP

<?php
error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE & ~E_WARNING & ~E_DEPRECATED);
require_once __DIR__ . '/../application/bin.bootstrap.php';
// --- Options
$displayUsage = false;
try {
$opts = new Zend_Console_Getopt(array(
'help|?' => "Displays usage information.",
'cron' => "Mandatory option for launch the cli in cron",
));
$opts->parse();
$optionsNb = count($opts->getOptions());
} catch (Zend_Console_Getopt_Exception $e) {
$displayUsage = true;
}
// --- Aide / Options
if ($optionsNb == 0 || isset($opts->help)) {
$displayUsage = true;
}
// --- Usage
if ($displayUsage) {
echo "Orone Table.\n";
echo $opts->getUsageMessage();
exit;
}
$requests = array(
'REF_CodeJournal_' => array(
'header' => array('id', 'nomJALedition', 'parution', 'parutionJours', 'aboDateDeb', 'aboDateFin', 'priorite'),
'columns' => array('id', 'nomJALedition', 'parution', 'parutionJours', 'aboDateDeb', 'aboDateFin', 'priorite'),
'sql' => "SELECT jal.id, jal.nomJALedition, jal.parution, jal.parutionJours, jalabo.aboDateDeb, jalabo.aboDateFin,
IF(jal.jalPrioritaire=1,'A',IF(jal.parution='Q','C','B')) AS priorite
FROM jo.tabJALed AS jal
LEFT JOIN ( SELECT abo.jalId, abo.aboDateDeb, abo.aboDateFin FROM jo.tabJALabo AS abo
WHERE abo.aboDateDeb < NOW() AND abo.aboDateFin > NOW()
GROUP BY abo.jalId ORDER BY abo.aboDateFin DESC
) AS jalabo ON jalabo.jalId = jal.id
WHERE jal.dateSuppr=0 ORDER BY jal.id",
),
'REF_CodeFormeJuridique_' => array(
'header' => array('code', 'libelle', 'libelleCourt'),
'columns' => array('code', 'libelle', 'libelleCourt'),
'sql' => array(
"SET @sumSirene := (SELECT SUM(nbSirene) FROM jo.tabFJur);",
"SELECT code, libelle, libelleCourt, (nbSirene/@sumSirene )*100 AS pourcentage
FROM jo.tabFJur
WHERE code>999 AND libelle!='' AND anneeSuppr<1000
ORDER BY pourcentage DESC;"
),
),
'REF_CodeTribunal_' => array(
'header' => array('triId', 'triCode', 'triType', 'triNom', 'triVille'),
'columns' => array('triId', 'triCode', 'triType', 'triNom', 'triVille'),
'sql' => "SELECT triId, triCode, triType, triNom, triVille
FROM jo.tribunaux
WHERE triType IN ('L', 'C', 'I', 'G', 'M');",
),
/*'REF_Evenements' => array(
'header' => array('triId', 'triCode', 'triType', 'triNom', 'triVille'),
'columns' => array('triId', 'triCode', 'triType', 'triNom', 'triVille'),
'sql' => "SELECT triId, triCode, triType, triNom, triVille
FROM jo.tribunaux
WHERE triType IN ('L', 'C', 'I', 'G', 'M');",
),*/
);
$dateBegin = date('YmdHis');
$dateFile = date('Ymd');
//Output path
$client = 'orone';
$pathOut = $c->profil->path->shared . '/clients/' . $client . '/recv';
foreach ($requests as $n => $r) {
$fileOptionsOut = array(
'dir' => $pathOut,
'type' => 'csv',
'delimiter' => ';',
'enclosure' => '"',
'header' => $r['header'],
'columns' => $r['columns'],
'name' => $n,
//'encoding' => 'ISO-8859-15',
);
// --- Requete SQL
if (is_array($r['sql'])) {
$i = 0;
foreach ($r['sql'] as $request) {
$sql = $request;
if ($i > count($r['sql']) - 1) {
break;
}
$conn->executeQuery($sql);
$i++;
}
} else {
$sql = $r['sql'];
}
$stmt = $conn->executeQuery($sql);
if ($stmt->rowCount() == 0) {
echo date('Y-m-d H:i:s')." - Pas de résultats\n";
} else {
// --- Ecriture du fichier
$filename = $fileOptionsOut['name'] . $dateFile . '.' . $fileOptionsOut['type'];
$file = $fileOptionsOut['dir'] . '/' . $filename;
// --- Ouverture fichier
$fp = fopen($file, 'w');
if ($fp === false) {
echo date('Y-m-d H:i:s')." - ERREUR Impossible de créer le fichier ".$file."\n";
exit;
}
// --- Header
if (count($fileOptionsOut['header']) > 0) {
fputcsv($fp, $fileOptionsOut['header'], $fileOptionsOut['delimiter'], $fileOptionsOut['enclosure']);
}
while ($item = $stmt->fetch(\PDO::FETCH_ASSOC)) {
// --- Trier données
$line = array();
foreach ($fileOptionsOut['columns'] as $i => $column) {
$line[] = $item[$column];
}
// --- Ecrire ligne
if (empty($fileOptionsOut['enclosure'])) {
fwrite($fp, join($fileOptionsOut['delimiter'], $line)."\n");
} else {
fputcsv($fp, $line, $fileOptionsOut['delimiter'], $fileOptionsOut['enclosure']);
}
}
// --- Fermeture fichier
fclose($fp);
// --- Taille du fichier
$size = filesize($file);
// --- Inscription pour livraison automatique dans le flux
try {
$conn->insert('sdv1.flux_fileout', array(
'client' => 'orone',
'name' => 'TABLE',
'nbLines' => 0,
'dateBegin' => $dateBegin,
'dateEnd' => date('YmdHis'),
'fileOut' => $filename,
'depotFileSize' => $size,
'depotType' => 'FTP',
'depotDate' => '0000-00-00 00:00:00',
));
} catch (\Doctrine\DBAL\DBALException $e) {
echo date('Y-m-d H:i:s')." - ".$e->getMessage()."\n";
continue;
}
}
}