You are here

class DateRecurUtility in Recurring Dates Field 8.2

Same name and namespace in other branches
  1. 3.x src/DateRecurUtility.php \Drupal\date_recur\DateRecurUtility
  2. 3.0.x src/DateRecurUtility.php \Drupal\date_recur\DateRecurUtility
  3. 3.1.x src/DateRecurUtility.php \Drupal\date_recur\DateRecurUtility

Provide standalone utilities.

Hierarchy

Expanded class hierarchy of DateRecurUtility

2 files declare their use of DateRecurUtility
DateRecurFilter.php in src/Plugin/views/filter/DateRecurFilter.php
DateRecurUtilityTest.php in tests/src/Kernel/DateRecurUtilityTest.php

File

src/DateRecurUtility.php, line 12

Namespace

Drupal\date_recur
View source
class DateRecurUtility {

  /**
   * Get the smallest date given a granularity and input.
   *
   * @param string $granularity
   *   The granularity of the input.
   * @param string $value
   *   User date input.
   * @param \DateTimeZone $timezone
   *   The timezone of the input.
   *
   * @return \DateTime
   *   A date time with the smallest value given granularity and input.
   *
   * @throws \InvalidArgumentException
   *   When date or granularity results in an invalid data object.
   */
  public static function createSmallestDateFromInput(string $granularity, string $value, \DateTimeZone $timezone) : \DateTime {
    return static::createDateFromInput($granularity, $value, $timezone, 'start');
  }

  /**
   * Get the largest date given a granularity and input.
   *
   * @param string $granularity
   *   The granularity of the input.
   * @param string $value
   *   User date input.
   * @param \DateTimeZone $timezone
   *   The timezone of the input.
   *
   * @return \DateTime
   *   A date time with the smallest value given granularity and input.
   *
   * @throws \InvalidArgumentException
   *   When date or granularity results in an invalid data object.
   */
  public static function createLargestDateFromInput(string $granularity, string $value, \DateTimeZone $timezone) : \DateTime {
    return static::createDateFromInput($granularity, $value, $timezone, 'end');
  }

  /**
   * Get the smallest or largest date given a granularity and input.
   *
   * @param string $granularity
   *   The granularity of the input. E.g 'year', 'month', etc.
   * @param string $value
   *   User date input.
   * @param \DateTimeZone $timezone
   *   The timezone of the input.
   * @param string $end
   *   Either 'start' or 'end' to get a date at the beginning or end of a
   *   granularity period.
   *
   * @return \DateTime
   *   A date time with the smallest value given granularity and input.
   *
   * @throws \InvalidArgumentException
   *   When date or granularity results in an invalid data object.
   *
   * @internal
   */
  protected static function createDateFromInput(string $granularity, string $value, \DateTimeZone $timezone, string $end) : \DateTime {
    assert(in_array($end, [
      'start',
      'end',
    ]));
    $start = $end === 'start';
    $granularityFormatsMap = DateRecurGranularityMap::GRANULARITY_DATE_FORMATS;
    $format = $granularityFormatsMap[$granularity];

    // Fill in the month, and day, for Year/Month granularities because if the
    // date we are creating doesnt have a month/day that exists at that time,
    // the date will be created in the future.
    // For example: if today is the 31st day, and the user is searching for
    // 2014-09, where September does not have 31 days, then the created date
    // will roll over to the next month to 2014-10-01.
    if ($granularity === 'year') {
      $format = $granularityFormatsMap['day'];

      // Every year has a month 1 and day 1.
      $value .= '-01-01';
    }
    elseif ($granularity === 'month') {
      $format = $granularityFormatsMap['day'];

      // Every month has a day 1.
      $value .= '-01';
    }

    // PHP fills missing granularity parts with current datetime. Use this
    // object to reconstruct the date at the beginning of the granularity
    // period.
    $knownDate = \DateTime::createFromFormat($format, $value, $timezone);
    if (!$knownDate) {
      throw new \InvalidArgumentException('Unable to create date from input.');
    }
    $granularityComparison = DateRecurGranularityMap::GRANULARITY;
    $granularityInt = $granularityComparison[$granularity];
    $dateParts = [
      'year' => (int) $knownDate
        ->format('Y'),
      'month' => $granularityInt >= 2 ? (int) $knownDate
        ->format('m') : ($start ? 1 : 12),
      'day' => $granularityInt >= 3 ? (int) $knownDate
        ->format('d') : 1,
      'hour' => $granularityInt >= 4 ? (int) $knownDate
        ->format('H') : ($start ? 0 : 23),
      'minute' => $granularityInt >= 5 ? (int) $knownDate
        ->format('i') : ($start ? 0 : 59),
      'second' => $granularityInt >= 6 ? (int) $knownDate
        ->format('s') : ($start ? 0 : 59),
    ];
    $date = DrupalDateTime::createFromArray($dateParts, $knownDate
      ->getTimezone());

    // Getting the last day of a month is a little more complex. Use the created
    // date to get number of days in the month.
    if (!$start && $granularityInt < 3) {
      $dateParts['day'] = $date
        ->format('t');
      $date = DrupalDateTime::createFromArray($dateParts, $date
        ->getTimezone());
    }
    return $date
      ->getPhpDateTime();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DateRecurUtility::createDateFromInput protected static function Get the smallest or largest date given a granularity and input.
DateRecurUtility::createLargestDateFromInput public static function Get the largest date given a granularity and input.
DateRecurUtility::createSmallestDateFromInput public static function Get the smallest date given a granularity and input.