mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 18:18:41 +00:00
113 lines
2.8 KiB
PHP
113 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.0
|
|
*
|
|
* @category TBD
|
|
* @package TBD
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @copyright 2013 Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://orange-management.com
|
|
*/
|
|
namespace phpOMS\Utils\TaskSchedule;
|
|
|
|
/**
|
|
* CronJob class.
|
|
*
|
|
* @category Framework
|
|
* @package phpOMS\Utils\TaskSchedule
|
|
* @author OMS Development Team <dev@oms.com>
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
* @license OMS License 1.0
|
|
* @link http://orange-management.com
|
|
* @since 1.0.0
|
|
*/
|
|
class CronJob extends TaskAbstract implements \Serializable
|
|
{
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param Interval $interval Interval
|
|
* @param string $cmd Command to execute
|
|
*
|
|
* @since 1.0.0
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
*/
|
|
public function __construct(Interval $interval = null, $cmd = '')
|
|
{
|
|
if (!isset($interval)) {
|
|
$this->interval = new Interval();
|
|
} else {
|
|
$this->interval = $interval;
|
|
}
|
|
|
|
$this->command = $cmd;
|
|
}
|
|
|
|
/**
|
|
* Serialize cronjob.
|
|
*
|
|
* @return string
|
|
*
|
|
* @since 1.0.0
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
*/
|
|
public function serialize()
|
|
{
|
|
$minute = $this->printValue($this->interval->getMinute());
|
|
$hour = $this->printValue($this->interval->getHour());
|
|
$dayOfMonth = $this->printValue($this->interval->getDayOfMonth());
|
|
$month = $this->printValue($this->interval->getMonth());
|
|
$dayOfWeek = $this->printValue($this->interval->getDayOfWeek());
|
|
|
|
return $minute . ' ' . $hour . ' ' . $dayOfMonth . ' ' . $month . ' ' . $dayOfWeek . ' ' . $this->command;
|
|
}
|
|
|
|
/**
|
|
* Print value.
|
|
*
|
|
* @param array $value Element to serialize
|
|
*
|
|
* @return string
|
|
*
|
|
* @since 1.0.0
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
*/
|
|
private function printValue(array $value) : string
|
|
{
|
|
if (($count = count($value['dayOfWeek'])) > 0) {
|
|
$parsed = implode(',', $value['dayOfWeek']);
|
|
} elseif ($value['start'] !== 0 && $value['end']) {
|
|
$parsed = $value['start'] . '-' . $value['end'];
|
|
$count = 2;
|
|
} else {
|
|
$parsed = '*';
|
|
$count = 1;
|
|
}
|
|
|
|
if ($count === 0 && $value['step'] !== 0) {
|
|
$parsed .= '/' . $value['step'];
|
|
}
|
|
|
|
return $parsed;
|
|
}
|
|
|
|
/**
|
|
* Unserialize cronjob.
|
|
*
|
|
* @param string $serialized To unserialize
|
|
*
|
|
* @since 1.0.0
|
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
|
*/
|
|
public function unserialize($serialized)
|
|
{
|
|
// TODO: Implement unserialize() method.
|
|
}
|
|
}
|