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

Replace node-time with moment-timezone #24

Merged
Merged
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
39 changes: 24 additions & 15 deletions lib/ZoneInfo.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*global console*/
var Path = require('path'),
fs = require('fs'),
time = require('time'),
moment = require('moment-timezone'),
difficultTimeZoneIdToEnglishDisplayName = {
"Antarctica/DumontDUrville": "Dumont d'Urville",
"America/St_Thomas": "St. Thomas",
Expand All @@ -11,8 +11,8 @@ var Path = require('path'),
"America/St_Kitts": "St. Kitts"
},
nextYear = new Date().getFullYear() + 1,
nextJanuary1st = new time.Date(nextYear, 0, 1),
nextJuly1st = new time.Date(nextYear, 6, 1);
nextJanuary1st = new Date(nextYear, 0, 1),
nextJuly1st = new Date(nextYear, 6, 1);

function ZoneInfo(zoneInfoPath) {
var that = this;
Expand All @@ -31,25 +31,34 @@ function ZoneInfo(zoneInfoPath) {
var territoryId = fields[0],
timeZoneId = fields[2];

// Try instantiating a time.Date object with this time zone.
// If this throws an exception, node-time's set of time zones is somehow different
// from /usr/share/zoneinfo/zone.tab:
new time.Date(nextJanuary1st.getTime(), timeZoneId);
// Try instantiating a moment-date in the timezone. moment-timezone carries
// a stringified timezone-db which is instantiated as objects after they are
// used the first time. After having attempted to use a timezone, we can
// check if there's an instantiated version in it's internal object. We have
// to do this, as it will fallback to UTC for an unknown timezone, and just
// `console.log()` a warning.
moment().tz(timeZoneId);
var val = Object.values(moment.tz._zones).some(function (x) { return typeof x !== 'string' && x.name === timeZoneId ;});
if (!val) {
// If this throws an exception, moment-timezone's set of time zones is somehow different
// from /usr/share/zoneinfo/zone.tab:
throw new Error('Timezone ' + timeZoneId + ' not found in moment-timezone.');
}

that.numTimeZonesByTerritoryId[territoryId] = (that.numTimeZonesByTerritoryId[territoryId] || 0) + 1;
that.territoryIdByTimeZoneId[timeZoneId] = territoryId;
that.timeZoneIds.push(timeZoneId);

time.tzset(timeZoneId);
var localtimeNextJanuary1st = time.localtime(nextJanuary1st.getTime() / 1000),
localtimeNextJuly1st = time.localtime(nextJuly1st.getTime() / 1000),
utcStandardOffsetSeconds;
if (localtimeNextJanuary1st.isDaylightSavings) {
utcStandardOffsetSeconds = localtimeNextJuly1st.gmtOffset;
var localtimeNextJanuary1st = moment.tz(nextJanuary1st.getTime(), timeZoneId),
localtimeNextJuly1st = moment.tz(nextJuly1st.getTime(), timeZoneId),
utcStandardOffsetMinutes;

if (localtimeNextJanuary1st.isDST()) {
utcStandardOffsetMinutes = localtimeNextJuly1st.utcOffset();
} else {
utcStandardOffsetSeconds = localtimeNextJanuary1st.gmtOffset;
utcStandardOffsetMinutes = localtimeNextJanuary1st.utcOffset();
}
that.utcStandardOffsetSecondsByTimeZoneId[timeZoneId] = utcStandardOffsetSeconds;
that.utcStandardOffsetSecondsByTimeZoneId[timeZoneId] = utcStandardOffsetMinutes * 60;
});
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"dependencies": {
"async": "0.9.0",
"cldr": "3.5.0",
"moment-timezone": "^0.5.31",
"passerror": "1.1.0",
"seq": "=0.3.5",
"time": "0.12.0",
"uglify-js": "1.3.3",
"uglifyast": "0.2.1",
"underscore": "1.8.3",
Expand Down