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