You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

63 regels
1.8 KiB

  1. <?php
  2. namespace Cron;
  3. use DateTime;
  4. /**
  5. * Minutes field. Allows: * , / -
  6. */
  7. class MinutesField extends AbstractField
  8. {
  9. public function isSatisfiedBy(DateTime $date, $value)
  10. {
  11. return $this->isSatisfied($date->format('i'), $value);
  12. }
  13. public function increment(DateTime $date, $invert = false, $parts = null)
  14. {
  15. if (is_null($parts)) {
  16. if ($invert) {
  17. $date->modify('-1 minute');
  18. } else {
  19. $date->modify('+1 minute');
  20. }
  21. return $this;
  22. }
  23. $parts = strpos($parts, ',') !== false ? explode(',', $parts) : array($parts);
  24. $minutes = array();
  25. foreach ($parts as $part) {
  26. $minutes = array_merge($minutes, $this->getRangeForExpression($part, 59));
  27. }
  28. $current_minute = $date->format('i');
  29. $position = $invert ? count($minutes) - 1 : 0;
  30. if (count($minutes) > 1) {
  31. for ($i = 0; $i < count($minutes) - 1; $i++) {
  32. if ((!$invert && $current_minute >= $minutes[$i] && $current_minute < $minutes[$i + 1]) ||
  33. ($invert && $current_minute > $minutes[$i] && $current_minute <= $minutes[$i + 1])) {
  34. $position = $invert ? $i : $i + 1;
  35. break;
  36. }
  37. }
  38. }
  39. if ((!$invert && $current_minute >= $minutes[$position]) || ($invert && $current_minute <= $minutes[$position])) {
  40. $date->modify(($invert ? '-' : '+') . '1 hour');
  41. $date->setTime($date->format('H'), $invert ? 59 : 0);
  42. }
  43. else {
  44. $date->setTime($date->format('H'), $minutes[$position]);
  45. }
  46. return $this;
  47. }
  48. public function validate($value)
  49. {
  50. return (bool) preg_match('/^[\*,\/\-0-9]+$/', $value);
  51. }
  52. }