mirror of
https://github.com/samsonjs/strftime.git
synced 2026-03-25 09:05:48 +00:00
225 lines
7 KiB
JavaScript
225 lines
7 KiB
JavaScript
/// strftime
|
|
/// https://github.com/samsonjs/strftime
|
|
/// @_sjs
|
|
///
|
|
/// Copyright 2010 - 2012 Sami Samhuri <sami.samhuri@gmail.com>
|
|
/// MIT License
|
|
|
|
;(function() {
|
|
|
|
//// Export the API
|
|
var namespace;
|
|
|
|
// CommonJS / Node module
|
|
if (typeof module !== 'undefined') {
|
|
namespace = module.exports = strftime;
|
|
}
|
|
|
|
// Browsers and other environments
|
|
else {
|
|
// Get the global object. Works in ES3, ES5, and ES5 strict mode.
|
|
namespace = (function(){ return this || (1,eval)('this') }());
|
|
}
|
|
|
|
namespace.strftime = strftime;
|
|
namespace.strftimeUTC = strftimeUTC;
|
|
namespace.localizedStrftime = localizedStrftime;
|
|
|
|
////
|
|
|
|
function words(s) { return (s || '').split(' '); }
|
|
|
|
var DefaultLocale =
|
|
{ days: words('Sunday Monday Tuesday Wednesday Thursday Friday Saturday')
|
|
, shortDays: words('Sun Mon Tue Wed Thu Fri Sat')
|
|
, months: words('January February March April May June July August September October November December')
|
|
, shortMonths: words('Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec')
|
|
, AM: 'AM'
|
|
, PM: 'PM'
|
|
, am: 'am'
|
|
, pm: 'pm'
|
|
};
|
|
|
|
function strftime(fmt, d, locale) {
|
|
return _strftime(fmt, d, locale, false);
|
|
}
|
|
|
|
function strftimeUTC(fmt, d, locale) {
|
|
return _strftime(fmt, d, locale, true);
|
|
}
|
|
|
|
function localizedStrftime(locale) {
|
|
return function(fmt, d) {
|
|
return strftime(fmt, d, locale);
|
|
};
|
|
}
|
|
|
|
// locale is an object with the same structure as DefaultLocale
|
|
function _strftime(fmt, d, locale, _useUTC) {
|
|
// d and locale are optional so check if d is really the locale
|
|
if (d && !quacksLikeDate(d)) {
|
|
locale = d;
|
|
d = undefined;
|
|
}
|
|
d = d || new Date();
|
|
locale = locale || DefaultLocale;
|
|
locale.formats = locale.formats || {};
|
|
var msDelta = 0;
|
|
if (_useUTC) {
|
|
msDelta = (d.getTimezoneOffset() || 0) * 60000;
|
|
d = new Date(d.getTime() + msDelta);
|
|
}
|
|
|
|
// Most of the specifiers supported by C's strftime, and some from Ruby.
|
|
// Some other syntax extensions from Ruby are supported: %-, %_, and %0
|
|
// to pad with nothing, space, or zero (respectively).
|
|
return fmt.replace(/%([-_0]?.)/g, function(_, c) {
|
|
var mod, padding;
|
|
if (c.length == 2) {
|
|
mod = c[0];
|
|
// omit padding
|
|
if (mod == '-') {
|
|
padding = '';
|
|
}
|
|
// pad with space
|
|
else if (mod == '_') {
|
|
padding = ' ';
|
|
}
|
|
// pad with zero
|
|
else if (mod == '0') {
|
|
padding = '0';
|
|
}
|
|
else {
|
|
// unrecognized, return the format
|
|
return _;
|
|
}
|
|
c = c[1];
|
|
}
|
|
switch (c) {
|
|
case 'A': return locale.days[d.getDay()];
|
|
case 'a': return locale.shortDays[d.getDay()];
|
|
case 'B': return locale.months[d.getMonth()];
|
|
case 'b': return locale.shortMonths[d.getMonth()];
|
|
case 'C': return pad(Math.floor(d.getFullYear() / 100), padding);
|
|
case 'D': return _strftime(locale.formats.D || '%m/%d/%y', d, locale);
|
|
case 'd': return pad(d.getDate(), padding);
|
|
case 'e': return d.getDate();
|
|
case 'F': return _strftime(locale.formats.F || '%Y-%m-%d', d, locale);
|
|
case 'H': return pad(d.getHours(), padding);
|
|
case 'h': return locale.shortMonths[d.getMonth()];
|
|
case 'I': return pad(hours12(d), padding);
|
|
case 'j':
|
|
var y=new Date(d.getFullYear(), 0, 1);
|
|
var day = Math.ceil((d.getTime() - y.getTime()) / (1000*60*60*24));
|
|
return day;
|
|
case 'k': return pad(d.getHours(), padding == null ? ' ' : padding);
|
|
case 'L': return pad(Math.floor(d.getTime() % 1000), 3);
|
|
case 'l': return pad(hours12(d), padding == null ? ' ' : padding);
|
|
case 'M': return pad(d.getMinutes(), padding);
|
|
case 'm': return pad(d.getMonth() + 1, padding);
|
|
case 'n': return '\n';
|
|
case 'P': return d.getHours() < 12 ? locale.am : locale.pm;
|
|
case 'p': return d.getHours() < 12 ? locale.AM : locale.PM;
|
|
case 'R': return _strftime(locale.formats.R || '%H:%M', d, locale);
|
|
case 'r': return _strftime(locale.formats.r || '%I:%M:%S %p', d, locale);
|
|
case 'S': return pad(d.getSeconds(), padding);
|
|
case 's': return Math.floor((d.getTime() - msDelta) / 1000);
|
|
case 'T': return _strftime(locale.formats.T || '%H:%M:%S', d, locale);
|
|
case 't': return '\t';
|
|
case 'U': return pad(weekNumber(d, 'sunday'), padding);
|
|
case 'u':
|
|
var day = d.getDay();
|
|
return day == 0 ? 7 : day; // 1 - 7, Monday is first day of the week
|
|
case 'v': return _strftime(locale.formats.v || '%e-%b-%Y', d, locale);
|
|
case 'W': return pad(weekNumber(d, 'monday'), padding);
|
|
case 'w': return d.getDay(); // 0 - 6, Sunday is first day of the week
|
|
case 'Y': return d.getFullYear();
|
|
case 'y':
|
|
var y = String(d.getFullYear());
|
|
return y.slice(y.length - 2);
|
|
case 'Z':
|
|
if (_useUTC) {
|
|
return "GMT";
|
|
}
|
|
else {
|
|
var tz = d.toString().match(/\((\w+)\)/);
|
|
return tz && tz[1] || '';
|
|
}
|
|
case 'z':
|
|
if (_useUTC) {
|
|
return "+0000";
|
|
}
|
|
else {
|
|
var off = d.getTimezoneOffset();
|
|
return (off < 0 ? '+' : '-') + pad(Math.abs(off / 60)) + pad(off % 60);
|
|
}
|
|
default: return c;
|
|
}
|
|
});
|
|
}
|
|
|
|
RequiredDateMethods = ['getTime', 'getTimezoneOffset', 'getDay', 'getDate', 'getMonth', 'getFullYear', 'getYear', 'getHours', 'getMinutes', 'getSeconds'];
|
|
function quacksLikeDate(x) {
|
|
var i = 0
|
|
, n = RequiredDateMethods.length
|
|
;
|
|
for (i = 0; i < n; ++i) {
|
|
if (typeof x[RequiredDateMethods[i]] != 'function') {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// Default padding is '0' and default length is 2, both are optional.
|
|
function pad(n, padding, length) {
|
|
// pad(n, <length>)
|
|
if (typeof padding === 'number') {
|
|
length = padding;
|
|
padding = '0';
|
|
}
|
|
|
|
// Defaults handle pad(n) and pad(n, <padding>)
|
|
if (padding == null) {
|
|
padding = '0';
|
|
}
|
|
length = length || 2;
|
|
|
|
var s = String(n);
|
|
// padding may be an empty string, don't loop forever if it is
|
|
if (padding) {
|
|
while (s.length < length) s = padding + s;
|
|
}
|
|
return s;
|
|
}
|
|
|
|
function hours12(d) {
|
|
var hour = d.getHours();
|
|
if (hour == 0) hour = 12;
|
|
else if (hour > 12) hour -= 12;
|
|
return hour;
|
|
}
|
|
|
|
// firstWeekday: 'sunday' or 'monday', default is 'sunday'
|
|
//
|
|
// Pilfered & ported from Ruby's strftime implementation.
|
|
function weekNumber(d, firstWeekday) {
|
|
firstWeekday = firstWeekday || 'sunday';
|
|
|
|
// This works by shifting the weekday back by one day if we
|
|
// are treating Monday as the first day of the week.
|
|
var wday = d.getDay();
|
|
if (firstWeekday == 'monday') {
|
|
if (wday == 0) // Sunday
|
|
wday = 6;
|
|
else
|
|
wday--;
|
|
}
|
|
var firstDayOfYear = new Date(d.getFullYear(), 0, 1)
|
|
, yday = (d - firstDayOfYear) / 86400000
|
|
, weekNum = (yday + 7 - wday) / 7
|
|
;
|
|
return Math.floor(weekNum);
|
|
}
|
|
|
|
}());
|