PHP Classes

File: web/SSO/modules/sanitycheck/hooks/hook_cron.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/sanitycheck/hooks/hook_cron.php   Download  
File: web/SSO/modules/sanitycheck/hooks/hook_cron.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 1,000 bytes
 

Contents

Class file image Download
<?php
/**
 * Hook to run a cron job.
 *
 * @param array &$croninfo Output
 */
function sanitycheck_hook_cron(&$croninfo) {
   
assert('is_array($croninfo)');
   
assert('array_key_exists("summary", $croninfo)');
   
assert('array_key_exists("tag", $croninfo)');

   
SimpleSAML_Logger::info('cron [sanitycheck]: Running cron in cron tag [' . $croninfo['tag'] . '] ');

    try {
   
       
$sconfig = SimpleSAML_Configuration::getOptionalConfig('config-sanitycheck.php');

       
$cronTag = $sconfig->getString('cron_tag', NULL);
        if (
$cronTag === NULL || $cronTag !== $croninfo['tag']) {
            return;
        }

       
$info = array();
       
$errors = array();
       
$hookinfo = array(
           
'info' => &$info,
           
'errors' => &$errors,
        );
       
       
SimpleSAML_Module::callHooks('sanitycheck', $hookinfo);
       
        if (
count($errors) > 0) {
            foreach (
$errors AS $err) {
               
$croninfo['summary'][] = 'Sanitycheck error: ' . $err;
            }
        }
       
    } catch (
Exception $e) {
       
$croninfo['summary'][] = 'Error executing sanity check: ' . $e->getMessage();
    }

}
?>