mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dataforms: Add support for datetime field types via XEP-0122
This commit is contained in:
parent
7a272b1670
commit
851127ecd7
2 changed files with 22 additions and 0 deletions
|
@ -446,6 +446,20 @@ describe("util.dataforms", function ()
|
||||||
assert.table(e);
|
assert.table(e);
|
||||||
assert.string(e.number);
|
assert.string(e.number);
|
||||||
end);
|
end);
|
||||||
|
|
||||||
|
describe("datetime", function ()
|
||||||
|
local f = dataforms.new { { name = "when"; type = "text-single"; datatype = "xs:dateTime" } } -- luacheck: ignore 431
|
||||||
|
|
||||||
|
it("works", function ()
|
||||||
|
local x = f:form({ when = "2008-08-22T21:09:00Z" });
|
||||||
|
assert.equal("2008-08-22T21:09:00Z", x:find("field/value#"))
|
||||||
|
local d, e = f:data(x);
|
||||||
|
assert.is_nil(e);
|
||||||
|
assert.same({ when = 1219439340 }, d);
|
||||||
|
end);
|
||||||
|
|
||||||
|
end)
|
||||||
|
|
||||||
end);
|
end);
|
||||||
describe("media element", function ()
|
describe("media element", function ()
|
||||||
it("produced media element correctly", function ()
|
it("produced media element correctly", function ()
|
||||||
|
|
|
@ -14,6 +14,7 @@ local tostring = tostring;
|
||||||
local t_concat = table.concat;
|
local t_concat = table.concat;
|
||||||
local st = require "util.stanza";
|
local st = require "util.stanza";
|
||||||
local jid_prep = require "util.jid".prep;
|
local jid_prep = require "util.jid".prep;
|
||||||
|
local datetime = require "util.datetime";
|
||||||
|
|
||||||
local _ENV = nil;
|
local _ENV = nil;
|
||||||
-- luacheck: std none
|
-- luacheck: std none
|
||||||
|
@ -321,6 +322,13 @@ data_validators["pubsub:integer-or-max"] =
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
data_validators["xs:dateTime"] =
|
||||||
|
function(data, field) -- luacheck: ignore 212/field
|
||||||
|
local n = datetime.parse(data);
|
||||||
|
if not n then return false, "invalid timestamp"; end
|
||||||
|
return true, n;
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
local function get_form_type(form)
|
local function get_form_type(form)
|
||||||
if not st.is_stanza(form) then
|
if not st.is_stanza(form) then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue