Changed separator between attribute names and prefixes from '|' to '\1' (optimization...
[prosody.git] / util / stanza.lua
1 -- Prosody IM
2 -- Copyright (C) 2008-2009 Matthew Wild
3 -- Copyright (C) 2008-2009 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 local t_insert      =  table.insert;
11 local t_concat      =  table.concat;
12 local t_remove      =  table.remove;
13 local t_concat      =  table.concat;
14 local s_format      = string.format;
15 local s_match       =  string.match;
16 local tostring      =      tostring;
17 local setmetatable  =  setmetatable;
18 local getmetatable  =  getmetatable;
19 local pairs         =         pairs;
20 local ipairs        =        ipairs;
21 local type          =          type;
22 local next          =          next;
23 local print         =         print;
24 local unpack        =        unpack;
25 local s_gsub        =   string.gsub;
26 local s_char        =   string.char;
27 local s_find        =   string.find;
28 local os            =            os;
29
30 local do_pretty_printing = not os.getenv("WINDIR");
31 local getstyle, getstring;
32 if do_pretty_printing then
33         local ok, termcolours = pcall(require, "util.termcolours");
34         if ok then
35                 getstyle, getstring = termcolours.getstyle, termcolours.getstring;
36         else
37                 do_pretty_printing = nil;
38         end
39 end
40
41 module "stanza"
42
43 stanza_mt = { __type = "stanza" };
44 stanza_mt.__index = stanza_mt;
45
46 function stanza(name, attr)
47         local stanza = { name = name, attr = attr or {}, tags = {}, last_add = {}};
48         return setmetatable(stanza, stanza_mt);
49 end
50
51 function stanza_mt:query(xmlns)
52         return self:tag("query", { xmlns = xmlns });
53 end
54
55 function stanza_mt:body(text, attr)
56         return self:tag("body", attr):text(text);
57 end
58
59 function stanza_mt:tag(name, attrs)
60         local s = stanza(name, attrs);
61         (self.last_add[#self.last_add] or self):add_direct_child(s);
62         t_insert(self.last_add, s);
63         return self;
64 end
65
66 function stanza_mt:text(text)
67         (self.last_add[#self.last_add] or self):add_direct_child(text);
68         return self; 
69 end
70
71 function stanza_mt:up()
72         t_remove(self.last_add);
73         return self;
74 end
75
76 function stanza_mt:reset()
77         local last_add = self.last_add;
78         for i = 1,#last_add do
79                 last_add[i] = nil;
80         end
81         return self;
82 end
83
84 function stanza_mt:add_direct_child(child)
85         if type(child) == "table" then
86                 t_insert(self.tags, child);
87         end
88         t_insert(self, child);
89 end
90
91 function stanza_mt:add_child(child)
92         (self.last_add[#self.last_add] or self):add_direct_child(child);
93         return self;
94 end
95
96 function stanza_mt:child_with_name(name)
97         for _, child in ipairs(self.tags) do    
98                 if child.name == name then return child; end
99         end
100 end
101
102 function stanza_mt:child_with_ns(ns)
103         for _, child in ipairs(self.tags) do    
104                 if child.attr.xmlns == ns then return child; end
105         end
106 end
107
108 function stanza_mt:children()
109         local i = 0;
110         return function (a)
111                         i = i + 1
112                         local v = a[i]
113                         if v then return v; end
114                 end, self, i;
115                                             
116 end
117 function stanza_mt:childtags()
118         local i = 0;
119         return function (a)
120                         i = i + 1
121                         local v = self.tags[i]
122                         if v then return v; end
123                 end, self.tags[1], i;
124                                             
125 end
126
127 local xml_escape
128 do
129         local escape_table = { ["'"] = "&apos;", ["\""] = "&quot;", ["<"] = "&lt;", [">"] = "&gt;", ["&"] = "&amp;" };
130         function xml_escape(str) return (s_gsub(str, "['&<>\"]", escape_table)); end
131         _M.xml_escape = xml_escape;
132 end
133
134 local function _dostring(t, buf, self, xml_escape, parentns)
135         local nsid = 0;
136         local name = t.name
137         t_insert(buf, "<"..name);
138         for k, v in pairs(t.attr) do
139                 if s_find(k, "\1", 1, true) then
140                         local ns, attrk = s_match(k, "^([^\1]*)\1?(.*)$");
141                         nsid = nsid + 1;
142                         t_insert(buf, " xmlns:ns"..nsid.."='"..xml_escape(ns).."' ".."ns"..nsid..":"..attrk.."='"..xml_escape(v).."'");
143                 elseif not(k == "xmlns" and v == parentns) then
144                         t_insert(buf, " "..k.."='"..xml_escape(v).."'");
145                 end
146         end
147         local len = #t;
148         if len == 0 then
149                 t_insert(buf, "/>");
150         else
151                 t_insert(buf, ">");
152                 for n=1,len do
153                         local child = t[n];
154                         if child.name then
155                                 self(child, buf, self, xml_escape, t.attr.xmlns);
156                         else
157                                 t_insert(buf, xml_escape(child));
158                         end
159                 end
160                 t_insert(buf, "</"..name..">");
161         end
162 end
163 function stanza_mt.__tostring(t)
164         local buf = {};
165         _dostring(t, buf, _dostring, xml_escape, nil);
166         return t_concat(buf);
167 end
168
169 function stanza_mt.top_tag(t)
170         local attr_string = "";
171         if t.attr then
172                 for k, v in pairs(t.attr) do if type(k) == "string" then attr_string = attr_string .. s_format(" %s='%s'", k, xml_escape(tostring(v))); end end
173         end
174         return s_format("<%s%s>", t.name, attr_string);
175 end
176
177 function stanza_mt.get_text(t)
178         if #t.tags == 0 then
179                 return t_concat(t);
180         end
181 end
182
183 function stanza_mt.__add(s1, s2)
184         return s1:add_direct_child(s2);
185 end
186
187
188 do
189         local id = 0;
190         function new_id()
191                 id = id + 1;
192                 return "lx"..id;
193         end
194 end
195
196 function preserialize(stanza)
197         local s = { name = stanza.name, attr = stanza.attr };
198         for _, child in ipairs(stanza) do
199                 if type(child) == "table" then
200                         t_insert(s, preserialize(child));
201                 else
202                         t_insert(s, child);
203                 end
204         end
205         return s;
206 end
207
208 function deserialize(stanza)
209         -- Set metatable
210         if stanza then
211                 local attr = stanza.attr;
212                 for i=1,#attr do attr[i] = nil; end
213                 local attrx = {};
214                 for att in pairs(attr) do
215                         if s_find(att, "|", 1, true) and not s_find(k, "\1", 1, true) then
216                                 local ns,na = s_match(k, "^([^|]+)|(.+)$");
217                                 attrx[ns.."\1"..na] = attr[att];
218                                 attr[att] = nil;
219                         end
220                 end
221                 for a,v in pairs(attrx) do
222                         attr[x] = v;
223                 end
224                 setmetatable(stanza, stanza_mt);
225                 for _, child in ipairs(stanza) do
226                         if type(child) == "table" then
227                                 deserialize(child);
228                         end
229                 end
230                 if not stanza.tags then
231                         -- Rebuild tags
232                         local tags = {};
233                         for _, child in ipairs(stanza) do
234                                 if type(child) == "table" then
235                                         t_insert(tags, child);
236                                 end
237                         end
238                         stanza.tags = tags;
239                         if not stanza.last_add then
240                                 stanza.last_add = {};
241                         end
242                 end
243         end
244         
245         return stanza;
246 end
247
248 function clone(stanza)
249         local lookup_table = {};
250         local function _copy(object)
251                 if type(object) ~= "table" then
252                         return object;
253                 elseif lookup_table[object] then
254                         return lookup_table[object];
255                 end
256                 local new_table = {};
257                 lookup_table[object] = new_table;
258                 for index, value in pairs(object) do
259                         new_table[_copy(index)] = _copy(value);
260                 end
261                 return setmetatable(new_table, getmetatable(object));
262         end
263         
264         return _copy(stanza)
265 end
266
267 function message(attr, body)
268         if not body then
269                 return stanza("message", attr);
270         else
271                 return stanza("message", attr):tag("body"):text(body);
272         end
273 end
274 function iq(attr)
275         if attr and not attr.id then attr.id = new_id(); end
276         return stanza("iq", attr or { id = new_id() });
277 end
278
279 function reply(orig)
280         return stanza(orig.name, orig.attr and { to = orig.attr.from, from = orig.attr.to, id = orig.attr.id, type = ((orig.name == "iq" and "result") or orig.attr.type) });
281 end
282
283 function error_reply(orig, type, condition, message)
284         local t = reply(orig);
285         t.attr.type = "error";
286         t:tag("error", {type = type})
287                 :tag(condition, {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}):up();
288         if (message) then t:tag("text"):text(message):up(); end
289         return t; -- stanza ready for adding app-specific errors
290 end
291
292 function presence(attr)
293         return stanza("presence", attr);
294 end
295
296 if do_pretty_printing then
297         local style_attrk = getstyle("yellow");
298         local style_attrv = getstyle("red");
299         local style_tagname = getstyle("red");
300         local style_punc = getstyle("magenta");
301         
302         local attr_format = " "..getstring(style_attrk, "%s")..getstring(style_punc, "=")..getstring(style_attrv, "'%s'");
303         local top_tag_format = getstring(style_punc, "<")..getstring(style_tagname, "%s").."%s"..getstring(style_punc, ">");
304         --local tag_format = getstring(style_punc, "<")..getstring(style_tagname, "%s").."%s"..getstring(style_punc, ">").."%s"..getstring(style_punc, "</")..getstring(style_tagname, "%s")..getstring(style_punc, ">");
305         local tag_format = top_tag_format.."%s"..getstring(style_punc, "</")..getstring(style_tagname, "%s")..getstring(style_punc, ">");
306         function stanza_mt.pretty_print(t)
307                 local children_text = "";
308                 for n, child in ipairs(t) do
309                         if type(child) == "string" then 
310                                 children_text = children_text .. xml_escape(child);
311                         else
312                                 children_text = children_text .. child:pretty_print();
313                         end
314                 end
315
316                 local attr_string = "";
317                 if t.attr then
318                         for k, v in pairs(t.attr) do if type(k) == "string" then attr_string = attr_string .. s_format(attr_format, k, tostring(v)); end end
319                 end
320                 return s_format(tag_format, t.name, attr_string, children_text, t.name);
321         end
322         
323         function stanza_mt.pretty_top_tag(t)
324                 local attr_string = "";
325                 if t.attr then
326                         for k, v in pairs(t.attr) do if type(k) == "string" then attr_string = attr_string .. s_format(attr_format, k, tostring(v)); end end
327                 end
328                 return s_format(top_tag_format, t.name, attr_string);
329         end
330 else
331         -- Sorry, fresh out of colours for you guys ;)
332         stanza_mt.pretty_print = stanza_mt.__tostring;
333         stanza_mt.pretty_top_tag = stanza_mt.top_tag;
334 end
335
336 return _M;