Skip to content
Snippets Groups Projects
load_stack_letterbox_alerts.php 3.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • Cyril Vazquez's avatar
    Cyril Vazquez committed
    <?php
    
    
    /**
     * 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.
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
     */
    
    /**
     * @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)
        {
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
            $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']);
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    }
    
    $txt = '';
    foreach (array_keys($options) as $key) {
        if (isset($options[$key]) && $options[$key] == false) {
            $txt .= $key . '=false,';
        } else {
            $txt .= $key . '=' . $options[$key] . ',';
        }
    }
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    $GLOBALS['configFile'] = $options['config'];
    
    
    print("Load xml config file:" . $GLOBALS['configFile'] . "\n");
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    
    // Tests existence of config file
    if (!file_exists($GLOBALS['configFile'])) {
    
        print(
            "Configuration file " . $GLOBALS['configFile']
            . " does not exist\n"
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
        );
        exit(102);
    }
    // Loading config file
    
    print("Load xml config file:" . $GLOBALS['configFile'] . "\n");
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    $xmlconfig = simplexml_load_file($GLOBALS['configFile']);
    
    
    if ($xmlconfig == false) {
    
        print("Error on loading config file:" . $GLOBALS['configFile'] . "\n");
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
        exit(103);
    }
    
    // Load config
    
    $config          = $xmlconfig->CONFIG;
    $maarchDirectory = (string)$config->MaarchDirectory;
    $customID        = (string)$config->customID;
    $customIDPath    = '';
    
    if ($customID <> '') {
        $customIDPath = $customID . '_';
    }
    
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    chdir($maarchDirectory);
    
    $maarchUrl = (string)$config->MaarchUrl;
    
    
    $GLOBALS['customId']  = $customID;
    
    $GLOBALS['batchDirectory'] = $maarchDirectory . 'bin'
                               . DIRECTORY_SEPARATOR . 'notification';
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    
    set_include_path(get_include_path() . PATH_SEPARATOR . $maarchDirectory);
      
    // INCLUDES
    try {
    
        Bt_myInclude($GLOBALS['maarchDirectory'] . 'vendor/autoload.php');
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    } catch (IncludeFileError $e) {
        $logger->write(
    
            'Problem with the php include path:' .$e .' '. get_include_path(),
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
            'ERROR'
        );
        exit();
    }
    
    
    $GLOBALS['errorLckFile'] = $GLOBALS['batchDirectory'] . DIRECTORY_SEPARATOR
                             . $customIDPath . $GLOBALS['batchName'] . '_error.lck';
    $GLOBALS['lckFile'] = $GLOBALS['batchDirectory'] . DIRECTORY_SEPARATOR
                        . $customIDPath . $GLOBALS['batchName'] . '.lck';
    
    Giovannoni Laurent's avatar
    Giovannoni Laurent committed
                        
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
    if (file_exists($GLOBALS['errorLckFile'])) {
    
        Bt_writeLog(['level' => 'ERROR', 'message' => 'Error persists, please solve this before launching a new batch']);
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
        exit(13);
    }
    
    if (file_exists($GLOBALS['lckFile'])) {
    
        Bt_writeLog(['level' => 'INFO', 'message' => 'An instance of the batch is already in progress']);
    
    Cyril Vazquez's avatar
    Cyril Vazquez committed
        exit(109);
    }
    $semaphore = fopen($GLOBALS['lckFile'], 'a');
    fwrite($semaphore, '1');
    fclose($semaphore);
    
    Bt_getWorkBatch();