HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/PvdBoogaard/indoorski.nl/backup/oude-site/marketing/admin/cron/send.php
<?php

/**
 * This file handles scheduled sending by itself. It's main task is to set up the required information (classes), load up the database and so on, then pass control over to the jobs_send.php file which runs everything from there.
 * This can be run as a separate cron job to the jobs.php file to allow more specific / frequent scheduling of just scheduled sending.
 *
 * @package interspire.iem.cron
 */

/*
 * If the framework was able to handle CLI requests then autoloading could have
 * been used instead of manual file inclusion.
 * 
 * @todo Refactor framework.
 */
require_once dirname(__FILE__) . '/common.php';

/**
 * Make sure we update how often cron is running.
 * 
 * Note on above comment: This actually doesn't update it. The line below
 * updates it. Comment in the wrong place FTW!
 */
require_once(SENDSTUDIO_API_DIRECTORY . '/jobs.php');

/*
 * This marks the cron as run and therefore updates how often it needs to be run
 * (see above comment), and therefore needs to be here. As this is just a 
 * constructor, it's not clear as to what it's actually doing.
 * 
 * @todo Refactor code so that it's self-documenting.
 */
$jobs_api = new Jobs_API(true);

/*
 * CheckCronSchedule actually returns whether or not sending should be allowed.
 * 
 * Unclear function name FTW!
 */
if (CheckCronSchedule('send')) {
	/*
	 * Include the job api. This will let us fetch jobs from the queue and start them up.
	 */
	require_once(SENDSTUDIO_API_DIRECTORY . '/jobs_send.php');

	/*
	 * Set up the Send Jobs API.
	 */
	$JobsAPI = new Jobs_Send_API();

	/*
	 * Check if there are any jobs in progress that aren't stale.
	 * If there is a global sending rate in place we don't want to overlap jobs.
	 */
	if ($JobsAPI->ShouldLockSending() && $JobsAPI->JobsRunning('newsletter')) {
		return;
	}

	/*
	 * While we keep fetching a job, process it.
	 *
	 * @see FetchJob
	 * @see ProcessJob
	 */
	while ($job = $JobsAPI->FetchJob('send')) {
		$result = $JobsAPI->ProcessJob($job);
		if (!$result) {
			echo "*** WARNING *** send job '" . $job . "' couldn't be processed.\n";
			break;
		}
	}
}

?>