Newer
Older
/**
* Copyright Maarch since 2008 under licence GPLv3.
* See LICENCE.txt file at the root folder for more details.
* This file is part of Maarch software.
*/
/**
* @brief process the event stack
*
* @file
* @author Cyril Vazquez <dev@maarch.org>
* @date $date$
* @version $Revision$
* @ingroup notification
*/
/**
* @brief Class to include the file error
*
*/
class IncludeFileError extends Exception
{
public function __construct($file)
{
$this->file = $file;
parent :: __construct('Include File \'$file\' is missing!', 1);
}
}
// Globals variables definition
$GLOBALS['batchName'] = 'process_letterbox_alerts';
$GLOBALS['wb'] = '';
$totalProcessedResources = 0;
$batchDirectory = '';
// Load tools
include('batch_tools.php');
// Defines scripts arguments
$options = getopt("c:", ["config:"]);
if (empty($options['c']) && empty($options['config'])) {
print("Configuration file missing\n");
exit(101);
} elseif (!empty($options['c']) && empty($options['config'])) {
$options['config'] = $options['c'];
unset($options['c']);
}
$txt = '';
foreach (array_keys($options) as $key) {
if (isset($options[$key]) && $options[$key] == false) {
$txt .= $key . '=false,';
} else {
$txt .= $key . '=' . $options[$key] . ',';
}
}
print($txt . "\n");
print("Load xml config file:" . $GLOBALS['configFile'] . "\n");
// Tests existence of config file
if (!file_exists($GLOBALS['configFile'])) {
print(
"Configuration file " . $GLOBALS['configFile']
. " does not exist\n"
print("Load xml config file:" . $GLOBALS['configFile'] . "\n");
$xmlconfig = simplexml_load_file($GLOBALS['configFile']);
print("Error on loading config file:" . $GLOBALS['configFile'] . "\n");
$config = $xmlconfig->CONFIG;
$maarchDirectory = (string)$config->MaarchDirectory;
$customID = (string)$config->customID;
$customIDPath = '';
if ($customID <> '') {
$customIDPath = $customID . '_';
}
chdir($maarchDirectory);
$maarchUrl = (string)$config->MaarchUrl;
$GLOBALS['customId'] = $customID;
$GLOBALS['batchDirectory'] = $maarchDirectory . 'bin'
. DIRECTORY_SEPARATOR . 'notification';
set_include_path(get_include_path() . PATH_SEPARATOR . $maarchDirectory);
// INCLUDES
try {
Bt_myInclude($GLOBALS['maarchDirectory'] . 'vendor/autoload.php');
'Problem with the php include path:' .$e .' '. get_include_path(),
$GLOBALS['errorLckFile'] = $GLOBALS['batchDirectory'] . DIRECTORY_SEPARATOR
. $customIDPath . $GLOBALS['batchName'] . '_error.lck';
$GLOBALS['lckFile'] = $GLOBALS['batchDirectory'] . DIRECTORY_SEPARATOR
. $customIDPath . $GLOBALS['batchName'] . '.lck';
Bt_writeLog(['level' => 'ERROR', 'message' => 'Error persists, please solve this before launching a new batch']);
exit(13);
}
if (file_exists($GLOBALS['lckFile'])) {
Bt_writeLog(['level' => 'INFO', 'message' => 'An instance of the batch is already in progress']);
exit(109);
}
$semaphore = fopen($GLOBALS['lckFile'], 'a');
fwrite($semaphore, '1');
fclose($semaphore);
Bt_getWorkBatch();