* * 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:----R+FSnEwEKb8WgpNB30CifYv9rYISwFAaiFr3Q90NHirwr+/O0N3YdCrCRBWvs9QzbD8xx+ZXA4JB6BtxiiWYdDEJ/z7EL5zsbsPlzYW19HKitjZQUpGn474gL3TokC03+nHSYkp9ugvoQd1hVzkP9tUSIlKwImqY9N1w4oi9MZLJmK4PT2dAzmvmktGnDFc3jhLLMIYkWobv9+NGb0ngyKX/elGe8Vm35A3MODghined/Sar/Y+KmUk+XGMQXWOShv0bDlj8xLj7g06hKsMnjdTuwK+QGi84V93GVKR85ZUn9BMcUy01dNrEKjmmd7oMcop3fzQhuLfu8UxG4IW9mFXpN1Cf5zT/QBUKH9ndTV1a1fs4wTgnefXwYpXaoRtCsV9an7cfSUxLJWdz+9QDorqrl+7jh/ySOAAQNB0fAkGX94dDaPnVDnoiKvgsGtHVm8iJyAmDH75lbLaYxmjs+cPI7djrdwAgn76z0liqKPHjobi5Q6Qr2oS8eoC9tpMrNQDrIZVoBYuOXv9lynVH1hId0VtJyNK2L6wegRfbpdWFatKVqHVUExmFJp7hh1EjwoTVMEH1aoqNbobkpo1ElE7x9XOom/y8+0hsC5tC2IZAEQ4zZ6Ui+KV+r3ZLdUeSB58lWIWGiXtX3579vB3bQl75WMwJrE2Ys+gLtf5B00Q=----ATTACHMENT:----MzUxNDU3OTEyNjUzOTAxOSA3MDc1OTE4MjAzMzAzOTI5IDIyNjk3Mjg3OTA2MzQzNjY=