Skip to content
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

Improve dt- parsing #131

Merged
merged 2 commits into from
Jan 12, 2018
Merged

Improve dt- parsing #131

merged 2 commits into from
Jan 12, 2018

Conversation

gRegorLove
Copy link
Member

@gRegorLove gRegorLove commented Jun 4, 2017

Fixes #115 and #126

Do not add "T" separator if it's not in the authored HTML.
Normalize timezone offsets to remove colons
Imply timezone offset if included in another dt- in the same microformat
@gRegorLove gRegorLove requested a review from aaronpk June 4, 2017 01:43
Mf2/Parser.php Outdated
foreach ($dateParts as $part) {
// Is this part a full ISO8601 datetime?
if (preg_match('/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}(?::\d{2})?(?:Z?[+|-]\d{2}:?\d{2})?$/', $part)) {
if (preg_match('/^\d{4}-\d{2}-\d{2}T?\d{2}:\d{2}(?::\d{2})?(?:Z?[+|-]\d{2}:?\d{2})?$/', $part)) {
Copy link
Member

Choose a reason for hiding this comment

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

Why the added ? here? That makes the T optional. Should this instead be checking for a as well as T?

Copy link
Member Author

Choose a reason for hiding this comment

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

Updated to [ T]

Mf2/Parser.php Outdated
} elseif (preg_match('/\d{4}-\d{2}-\d{2}/', $part) and empty($datePart)) {
// Is the current part a valid date AND no other date representation has been found?
$datePart = $part;
} elseif (preg_match('/(Z?[+|-]\d{2}:?\d{2})/', $part) and empty($timezonePart)) {
Copy link
Member

Choose a reason for hiding this comment

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

This should match Z OR +00:00, so probably a better regex would be

/(Z|[+-]\d{2}:?\d{2})/

Copy link
Member Author

@gRegorLove gRegorLove Jun 17, 2017

Choose a reason for hiding this comment

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

Since the timezone may also only be hours, updated this to /^(Z|[+-]\d{2}:?(\d{2})?)$/

Mf2/Parser.php Outdated
@@ -778,9 +835,14 @@ public function parseDT(\DOMElement $dt, &$dates = array()) {
* if $dtValue is only a time and there are recently parsed dates,
* form the full date-time using the most recently parsed dt- value
*/
if ((preg_match('/^\d{1,2}:\d{1,2}(Z?[+|-]\d{2}:?\d{2})?/', $dtValue) or preg_match('/^\d{1,2}[a|p]m/', $dtValue)) && !empty($dates)) {
if ((preg_match('/^\d{1,2}:\d{1,2}(Z?[+|-]\d{2}:?\d{2}?)?/', $dtValue) or preg_match('/^\d{1,2}[a|p]m/', $dtValue)) && !empty($dates)) {
Copy link
Member

Choose a reason for hiding this comment

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

What's the reason for making the minutes part optional here? It looks like the change is adding the ? to the minutes part of the timezone offset. Like the above, this should probably be changed to (Z|[+-]\d{2}:?\d{2})

I know this wasn't your change, but [a|p] and [+|-] is incorrect, since the regex is using [] you only need [ap] and [+-].

Copy link
Member Author

@gRegorLove gRegorLove Jun 17, 2017

Choose a reason for hiding this comment

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

Hour-only timezone offsets (+XX, -XX) are valid according to the VCP spec. I updated the am/pm regex in both locations to handle optional periods as well [ap]\.?m\.?

Edit: Re-reading, hour-only timezone offsets appear to only be valid if they appear in their own VCP element, separate from the time. Not sure if that's an oversight in the time+timezone section or not.

Mf2/Parser.php Outdated
foreach ($temp_dates as $propName => $data) {
foreach ( $data as $dtValue ) {

if ( $impliedTimezone && preg_match('/[+|-]\d{2}\d{2}/i', $dtValue, $matches) == 0 ) {
Copy link
Member

Choose a reason for hiding this comment

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

Do you need to match the colon here as well?

/[+-]\d{2}:?\d{2}/

Copy link
Member Author

Choose a reason for hiding this comment

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

This is after the new method normalizeTimezoneOffset() is called, which removes the colon. This isn't explicitly stated in the spec, but I inferred it from: (bold is my emphasis)

However the colons ":" separating the hours and minutes of any timezone offset are optional and discouraged in order to make it less likely that a timezone offset will be confused for a time.

@gRegorLove
Copy link
Member Author

@aaronpk Updated.the regexes and TZ normalization. Can you review?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants