extranet/scripts/jobs/bilaninput.php

143 lines
3.7 KiB
PHP
Raw Normal View History

2015-03-11 15:39:45 +01:00
<?php
/**
* @todo :
* Faire en sorte que chaque extranet récupére la liste des bilans à traiter, depuis le webservice
* pour envoyer sur le ftp
*/
2015-09-25 14:38:03 +02:00
// --- Define path to application directory
2015-03-11 15:39:45 +01:00
defined('APPLICATION_PATH')
2015-09-25 14:38:03 +02:00
|| define('APPLICATION_PATH', realpath(__DIR__ . '/../../application'));
2015-03-11 15:39:45 +01:00
2015-09-25 14:38:03 +02:00
// --- Define application environment
2015-03-11 15:39:45 +01:00
defined('APPLICATION_ENV')
|| define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
2015-09-25 14:38:03 +02:00
// --- Composer autoload
require_once realpath(__DIR__ . '/../../vendor/autoload.php');
2015-03-11 15:39:45 +01:00
2015-09-25 14:38:03 +02:00
// --- Create application, bootstrap, and run
$application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
2015-03-11 15:39:45 +01:00
try {
$opts = new Zend_Console_Getopt(
//Options
array(
'help|?' => "Affiche l'aide.",
'send-s' => "Envoi tous les fichiers non traité par FTP (si nom du fichier fourni force l'envoi).",
'delete' => "Supprime les anciens fichiers et leurs références",
'save=s' => "Enregistre la présence d'un fichier"
));
$opts->parse();
} catch (Zend_Console_Getopt_Exception $e) {
echo $e->getUsageMessage();
exit;
}
//Usage
if(count($opts->getOptions())==0 || isset($opts->help))
{
echo "Bilan en commande saisi.";
echo "\n\n";
echo $opts->getUsageMessage();
echo "\n";
exit;
}
$test = false;
if ( isset($opts->list) ) {
$test = true;
}
$c = new Zend_Config($application->getOptions());
Zend_Registry::set('config', $c);
2016-02-12 15:25:27 +01:00
define ('PATH_DATA', $c->profil->path->shared);
2015-03-11 15:39:45 +01:00
define('FTP_HOST', 'ftp.scores-decisions.com');
define('FTP_USER', 'bilansext');
define('FTP_PASS', 'j12azt78');
define('FTP_DIR', 'send');
// --- Functions
function sendToFtp($localFile, $remoteFile)
{
$conn_id = ftp_connect(FTP_HOST);
$login_result = ftp_login($conn_id, FTP_USER, FTP_PASS);
ftp_chdir($conn_id, FTP_DIR);
$return = false;
if (ftp_put($conn_id, $remoteFile, $localFile, FTP_BINARY)) {
$return = true;
}
ftp_close($conn_id);
return $return;
}
// --- Connexion à la base de données
$db = Zend_Db::factory($c->profil->db->sdv1);
Zend_Db_Table_Abstract::setDefaultAdapter($db);
$model = new Application_Model_BilanInput();
// --- Suppression des fichiers traités
if ( $opts->delete ) {
echo date('Y-m-d H:i:s')." - Suppression fichier.\n";
try {
$sql = $model->select()->where('sent=?', 1)->where('DATE_SUB(CURDATE(),INTERVAL 30 DAY) >= dateUpdate');
$result = $model->fetchAll($sql);
if (count($result) > 0) {
foreach ($result as $item) {
2016-02-12 15:25:27 +01:00
if( unlink(PATH_DATA . '/persist/bilanclient/' . $item->file) ){
2015-03-11 15:39:45 +01:00
$model->delete("file='".$item->file."'");
}
}
}
} catch(Zend_Db_Exception $e) {
echo date('Y-m-d H:i:s')." - ".$e->getMessage().".\n";
}
echo date('Y-m-d H:i:s')." - Suppression fichier FIN.\n";
}
if ( $opts->save ) {
echo date('Y-m-d H:i:s')." - Enregistrement fichier.\n";
$model->insert(array('file' => $opts->save, 'sent' => 0));
echo date('Y-m-d H:i:s')." - Enregistrement fichier FIN.\n";
}
// --- Envoi
if ( $opts->send ) {
echo date('Y-m-d H:i:s')." - Envoi fichier.\n";
2015-07-16 17:42:55 +02:00
2015-03-11 15:39:45 +01:00
$tabFichier = array();
// --- Selection fichier
if ( $opts->send !== true ) {
$tabFichier[] = basename($opts->send);
} else {
$sql = $model->select()->where('sent=?', 0);
$result = $model->fetchAll($sql);
if (count($result) > 0) {
foreach($result as $item) {
$tabFichier[] = $item->file;
}
}
}
2015-07-16 17:42:55 +02:00
2015-03-11 15:39:45 +01:00
// --- Envoi sur le FTP
if (count($tabFichier) > 0) {
foreach ($tabFichier as $fichier) {
echo date('Y-m-d H:i:s')." - Envoi fichier ";
2016-02-29 15:52:18 +01:00
if ( sendToFtp(PATH_DATA.'/persist/bilanclient/'.$fichier, $fichier) ) {
2015-03-11 15:39:45 +01:00
$model->setFlagSent($fichier);
echo $fichier." - OK";
} else {
echo $fichier." - Erreur";
}
echo "\n";
}
}
2015-07-16 17:42:55 +02:00
2015-03-11 15:39:45 +01:00
echo date('Y-m-d H:i:s')." - Envoi fichier FIN.\n";
}