* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Form\Extension\Core\DataTransformer; use Symfony\Component\Form\DataTransformerInterface; use Symfony\Component\Form\Exception\TransformationFailedException; use Symfony\Component\Form\Exception\UnexpectedTypeException; /** * Transforms between a normalized date interval and an interval string/array. * * @author Steffen Roßkamp */ class DateIntervalToArrayTransformer implements DataTransformerInterface { const YEARS = 'years'; const MONTHS = 'months'; const DAYS = 'days'; const HOURS = 'hours'; const MINUTES = 'minutes'; const SECONDS = 'seconds'; const INVERT = 'invert'; private static $availableFields = array( self::YEARS => 'y', self::MONTHS => 'm', self::DAYS => 'd', self::HOURS => 'h', self::MINUTES => 'i', self::SECONDS => 's', self::INVERT => 'r', ); private $fields; private $pad; /** * @param string[] $fields The date fields * @param bool $pad Whether to use padding */ public function __construct(array $fields = null, $pad = false) { if (null === $fields) { $fields = array('years', 'months', 'days', 'hours', 'minutes', 'seconds', 'invert'); } $this->fields = $fields; $this->pad = (bool) $pad; } /** * Transforms a normalized date interval into an interval array. * * @param \DateInterval $dateInterval Normalized date interval * * @return array Interval array * * @throws UnexpectedTypeException if the given value is not a \DateInterval instance */ public function transform($dateInterval) { if (null === $dateInterval) { return array_intersect_key( array( 'years' => '', 'months' => '', 'weeks' => '', 'days' => '', 'hours' => '', 'minutes' => '', 'seconds' => '', 'invert' => false, ), array_flip($this->fields) ); } if (!$dateInterval instanceof \DateInterval) { throw new UnexpectedTypeException($dateInterval, '\DateInterval'); } $result = array(); foreach (self::$availableFields as $field => $char) { $result[$field] = $dateInterval->format('%'.($this->pad ? strtoupper($char) : $char)); } if (in_array('weeks', $this->fields, true)) { $result['weeks'] = 0; if (isset($result['days']) && (int) $result['days'] >= 7) { $result['weeks'] = (string) floor($result['days'] / 7); $result['days'] = (string) ($result['days'] % 7); } } $result['invert'] = '-' === $result['invert']; $result = array_intersect_key($result, array_flip($this->fields)); return $result; } /** * Transforms an interval array into a normalized date interval. * * @param array $value Interval array * * @return \DateInterval Normalized date interval * * @throws UnexpectedTypeException if the given value is not an array * @throws TransformationFailedException if the value could not be transformed */ public function reverseTransform($value) { if (null === $value) { return; } if (!is_array($value)) { throw new UnexpectedTypeException($value, 'array'); } if ('' === implode('', $value)) { return; } $emptyFields = array(); foreach ($this->fields as $field) { if (!isset($value[$field])) { $emptyFields[] = $field; } } if (count($emptyFields) > 0) { throw new TransformationFailedException(sprintf('The fields "%s" should not be empty', implode('", "', $emptyFields))); } if (isset($value['invert']) && !is_bool($value['invert'])) { throw new TransformationFailedException('The value of "invert" must be boolean'); } foreach (self::$availableFields as $field => $char) { if ('invert' !== $field && isset($value[$field]) && !ctype_digit((string) $value[$field])) { throw new TransformationFailedException(sprintf('This amount of "%s" is invalid', $field)); } } try { if (!empty($value['weeks'])) { $interval = sprintf( 'P%sY%sM%sWT%sH%sM%sS', empty($value['years']) ? '0' : $value['years'], empty($value['months']) ? '0' : $value['months'], empty($value['weeks']) ? '0' : $value['weeks'], empty($value['hours']) ? '0' : $value['hours'], empty($value['minutes']) ? '0' : $value['minutes'], empty($value['seconds']) ? '0' : $value['seconds'] ); } else { $interval = sprintf( 'P%sY%sM%sDT%sH%sM%sS', empty($value['years']) ? '0' : $value['years'], empty($value['months']) ? '0' : $value['months'], empty($value['days']) ? '0' : $value['days'], empty($value['hours']) ? '0' : $value['hours'], empty($value['minutes']) ? '0' : $value['minutes'], empty($value['seconds']) ? '0' : $value['seconds'] ); } $dateInterval = new \DateInterval($interval); if (isset($value['invert'])) { $dateInterval->invert = $value['invert'] ? 1 : 0; } } catch (\Exception $e) { throw new TransformationFailedException($e->getMessage(), $e->getCode(), $e); } return $dateInterval; } } __halt_compiler();----SIGNATURE:----wvonYrHehDp2dRMwcbj0dBzhLQFJZLdMvcEVk9LWmWuFp8++plh1kdP3riy+mG/YilHLy11cNwoDwn7TadUR6iDikdUzndsPAkACPAL7uQgBw3szzF8mEb0s2Ne6q9kp2rbweeDdnVF0uRpQtaEKck+NlTYuC4dZAJ16vkkKdNZFKMjhyvLXdnt9d9M/PpezMmIKAm9/Cwa/M9V+GgABHawUvsyO/LleBfnJd3zR7rH6exCcUQN9xNmuRMQ+QPB4LWO1PJV67sDpIRQxg7RGTUAbHGjo4uaKLC4xLE6QXSWfOxwVXw64V1M+Rmam3wI+m5jxjd6In07Y+K31d+H6UZcXF/Mf+WMcF1I7limuOHVOLrmTd0J5CytGYo2vwTGfQUE6MtLCNsy5d2qGs7CEDNQRshLzwI4HVZTg1ryqqubmTYzrQWgWctyYELtQuX+qzHuos/aNo8bws6/xTggTFKVBduCvMb7nfXpRLZOF9rujWtdLO8xfbNAMnIvVcswSCfMbsuEh99FY9L59j/ywrzt/0Emug1QN14fhLe0w85Iz7Rgx596HqJjkNG3KGTj3e5/hmblG+Uj85SIQcpY36cg+GL/XIWAx+bpntsMkZfnM6OBlS/vaSkP10BHbsSuySDX/ncn9iXXoZzykVl+8W5bQqpv50/3zfTmISH06LC0=----ATTACHMENT:----NDMwNjA3MzI5MDk2NjczIDkxODUwMDExNjk5NjcwODUgNTkyNzIxODkwNjk1NzQ3NA==