Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[Form][FrameworkBundle][Bridge] Add a DateInterval form type #15030

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,25 @@
{% endif %}
{%- endblock time_widget %}

{% block dateinterval_widget %}
{% if widget == 'single_text' %}
{{- block('form_widget_simple') -}}
{% else %}
{% set attr = attr|merge({class: (attr.class|default('') ~ ' form-inline')|trim}) %}
<div {{ block('widget_container_attributes') }}>
{{ form_errors(form) }}
{% if with_years %}{{ form_widget(form.years) }}{% endif %}
{% if with_months %}{{ form_widget(form.months) }}{% endif %}
{% if with_weeks %}{{ form_widget(form.weeks) }}{% endif %}
{% if with_days %}{{ form_widget(form.days) }}{% endif %}
{% if with_hours %}{{ form_widget(form.hours) }}{% endif %}
{% if with_minutes %}{{ form_widget(form.minutes) }}{% endif %}
{% if with_seconds %}{{ form_widget(form.seconds) }}{% endif %}
{% if with_invert %}{{ form_widget(form.invert) }}{% endif %}
</div>
{% endif %}
{% endblock dateinterval_widget %}

{% block choice_widget_collapsed -%}
{% set attr = attr|merge({class: (attr.class|default('') ~ ' form-control')|trim}) %}
{{- parent() -}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,24 @@
{%- endif -%}
{%- endblock time_widget -%}

{% block dateinterval_widget %}
{% if widget == 'single_text' %}
{{- block('form_widget_simple') -}}
{% else %}
<div {{ block('widget_container_attributes') }}>
{{ form_errors(form) }}
{% if with_years %}{{ form_widget(form.years) }}{% endif %}
{% if with_months %}{{ form_widget(form.months) }}{% endif %}
{% if with_weeks %}{{ form_widget(form.weeks) }}{% endif %}
{% if with_days %}{{ form_widget(form.days) }}{% endif %}
{% if with_hours %}{{ form_widget(form.hours) }}{% endif %}
{% if with_minutes %}{{ form_widget(form.minutes) }}{% endif %}
{% if with_seconds %}{{ form_widget(form.seconds) }}{% endif %}
{% if with_invert %}{{ form_widget(form.invert) }}{% endif %}
</div>
{% endif %}
{% endblock dateinterval_widget %}

{%- block number_widget -%}
{# type="number" doesn't work with floats #}
{%- set type = type|default('text') -%}
Expand Down
3 changes: 3 additions & 0 deletions src/Symfony/Bundle/FrameworkBundle/Resources/config/form.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@
<service id="form.type.datetime" class="Symfony\Component\Form\Extension\Core\Type\DateTimeType">
<tag name="form.type" alias="datetime" />
</service>
<service id="form.type.dateinterval" class="Symfony\Component\Form\Extension\Core\Type\DateIntervalType">
<tag name="form.type" alias="dateinterval" />
</service>
<service id="form.type.email" class="Symfony\Component\Form\Extension\Core\Type\EmailType">
<tag name="form.type" alias="email" />
</service>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ protected function loadTypes()
new Type\CollectionType(),
new Type\CountryType(),
new Type\DateType(),
new Type\DateIntervalType(),
new Type\DateTimeType(),
new Type\EmailType(),
new Type\HiddenType(),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,179 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is the header copied from other files?

i think you should be named here @MisatoTremor

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, this is the standard copyright header.
I've put my name at the class author PHPDoc as usual. ;)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, i didn't know.

thank you!

*
* 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;

/**
* Transforms between a normalized date interval and an interval string/array.
*
* @author Steffen Roßkamp <[email protected]>
*/
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;

/**
* Constructor.
*
* @param array $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 TransformationFailedException 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 TransformationFailedException('Expected a \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 TransformationFailedException If the given value is not an array or
* if the value could not be transformed.
*/
public function reverseTransform($value)
{
if (null === $value) {
return;
}
if (!is_array($value)) {
throw new TransformationFailedException('Expected an 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 ($field !== 'invert' && 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 (!empty($value['invert'])) {
$dateInterval->invert = $value['invert'] ? 1 : 0;
}
} catch (\Exception $e) {
throw new TransformationFailedException($e->getMessage(), $e->getCode(), $e);
}

return $dateInterval;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
<?php

/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* 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;

/**
* Transforms between a date string and a DateInterval object.
*
* @author Steffen Roßkamp <[email protected]>
*/
class DateIntervalToStringTransformer implements DataTransformerInterface
{
/**
* Format used for generating strings.
*
* @var string
*/
private $format;

/**
* Whether to parse by as a signed interval.
*
* @var bool
*/
private $parseSigned;

/**
* Transforms a \DateInterval instance to a string.
*
* @see \DateInterval::format() for supported formats
*
* @param string $format The date format
* @param bool $parseSigned Whether to parse as a signed interval
*/
public function __construct($format = 'P%yY%mM%dDT%hH%iM%sS', $parseSigned = false)
{
$this->format = $format;
$this->parseSigned = $parseSigned;
}

/**
* Transforms a DateInterval object into a date string with the configured format
* and timezone.
*
* @param \DateInterval $value A DateInterval object
*
* @return string An ISO 8601 or relative date string like date interval presentation
*
* @throws TransformationFailedException If the given value is not a \DateInterval instance.
*/
public function transform($value)
{
if (null === $value) {
return '';
}
if (!$value instanceof \DateInterval) {
throw new TransformationFailedException('Expected a \DateInterval.');
}

return $value->format($this->format);
}

/**
* Transforms a date string in the configured into a DateInterval object.
*
* @param string $value An ISO 8601 or date string like date interval presentation
*
* @return \DateInterval An instance of \DateInterval
*
* @throws TransformationFailedException If the given value is not a string or
* if the date interval could not be parsed.
*/
public function reverseTransform($value)
{
if (empty($value)) {
return;
}
if (!is_string($value)) {
throw new TransformationFailedException('Expected a string.');
}
if (!$this->isISO8601($value)) {
throw new TransformationFailedException('Non ISO 8601 date strings are not supported yet');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What about: Only date intervals in the ISO 8601 format are supported.

}
$valuePattern = '/^'.preg_replace('/%([yYmMdDhHiIsSwW])(\w)/', '(?P<$1>\d+)$2', $this->format).'$/';
if (!preg_match($valuePattern, $value)) {
throw new TransformationFailedException(
sprintf('Value "%s" contains intervals not accepted by format "%s".', $value, $this->format)
);
}
try {
$dateInterval = new \DateInterval($value);
} catch (\Exception $e) {
throw new TransformationFailedException($e->getMessage(), $e->getCode(), $e);
}

return $dateInterval;
}

/**
* Checks if a string is a valid ISO 8601 duration string.
*
* @param string $string A string
*
* @return int
*/
private function isISO8601($string)
{
return preg_match(
'/^P(?=\w*(?:\d|%\w))(?:\d+Y|%[yY]Y)?(?:\d+M|%[mM]M)?(?:(?:\d+D|%[dD]D)|(?:\d+W|%[wW]W))?(?:T(?:\d+H|[hH]H)?(?:\d+M|[iI]M)?(?:\d+S|[sS]S)?)?$/',
$string
);
}
}
Loading