util.datetime: Added implementation for function parse().
[prosody.git] / util / datetime.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 -- 
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
8
9
10 -- XEP-0082: XMPP Date and Time Profiles
11
12 local os_date = os.date;
13 local os_time = os.time;
14 local os_difftime = os.difftime;
15 local error = error;
16 local tonumber = tonumber;
17
18 module "datetime"
19
20 function date(t)
21         return os_date("!%Y-%m-%d", t);
22 end
23
24 function datetime(t)
25         return os_date("!%Y-%m-%dT%H:%M:%SZ", t);
26 end
27
28 function time(t)
29         return os_date("!%H:%M:%S", t);
30 end
31
32 function legacy(t)
33         return os_date("!%Y%m%dT%H:%M:%S", t);
34 end
35
36 function parse(s)
37         if s then
38                 local year, month, day, hour, min, sec, tzd;
39                 year, month, day, hour, min, sec, tzd = s:match("^(%d%d%d%d)-?(%d%d)-?(%d%d)T(%d%d):(%d%d):(%d%d)%.?%d*([Z+%-].*)$");
40                 if year then
41                         local time_offset = os_difftime(os_time(os_date("*t")), os_time(os_date("!*t"))); -- to deal with local timezone
42                         local tzd_offset = 0;
43                         if tzd ~= "" and tzd ~= "Z" then
44                                 local sign, h, m = tzd:match("([+%-])(%d%d):(%d%d)");
45                                 if not sign then return; end
46                                 h, m = tonumber(h), tonumber(m);
47                                 tzd_offset = h * 60 * 60 + m * 60;
48                                 if sign == "-" then tzd_offset = -tzd_offset; end
49                         end
50                         sec = sec + time_offset + tzd_offset;
51                         return os_time({year=year, month=month, day=day, hour=hour, min=min, sec=sec});
52                 end
53         end
54 end
55
56 return _M;