Merge 0.9->trunk
[prosody.git] / plugins / mod_presence.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 local log = module._log;
10
11 local require = require;
12 local pairs, ipairs = pairs, ipairs;
13 local t_concat, t_insert = table.concat, table.insert;
14 local s_find = string.find;
15 local tonumber = tonumber;
16
17 local st = require "util.stanza";
18 local jid_split = require "util.jid".split;
19 local jid_bare = require "util.jid".bare;
20 local hosts = hosts;
21 local NULL = {};
22
23 local rostermanager = require "core.rostermanager";
24 local sessionmanager = require "core.sessionmanager";
25
26 local function select_top_resources(user)
27         local priority = 0;
28         local recipients = {};
29         for _, session in pairs(user.sessions) do -- find resource with greatest priority
30                 if session.presence then
31                         -- TODO check active privacy list for session
32                         local p = session.priority;
33                         if p > priority then
34                                 priority = p;
35                                 recipients = {session};
36                         elseif p == priority then
37                                 t_insert(recipients, session);
38                         end
39                 end
40         end
41         return recipients;
42 end
43 local function recalc_resource_map(user)
44         if user then
45                 user.top_resources = select_top_resources(user);
46                 if #user.top_resources == 0 then user.top_resources = nil; end
47         end
48 end
49
50 local ignore_presence_priority = module:get_option("ignore_presence_priority");
51
52 function handle_normal_presence(origin, stanza)
53         if ignore_presence_priority then
54                 local priority = stanza:child_with_name("priority");
55                 if priority and priority[1] ~= "0" then
56                         for i=#priority.tags,1,-1 do priority.tags[i] = nil; end
57                         for i=#priority,1,-1 do priority[i] = nil; end
58                         priority[1] = "0";
59                 end
60         end
61         local priority = stanza:child_with_name("priority");
62         if priority and #priority > 0 then
63                 priority = t_concat(priority);
64                 if s_find(priority, "^[+-]?[0-9]+$") then
65                         priority = tonumber(priority);
66                         if priority < -128 then priority = -128 end
67                         if priority > 127 then priority = 127 end
68                 else priority = 0; end
69         else priority = 0; end
70         if full_sessions[origin.full_jid] then -- if user is still connected
71                 origin.send(stanza); -- reflect their presence back to them
72         end
73         local roster = origin.roster;
74         local node, host = origin.username, origin.host;
75         local user = bare_sessions[node.."@"..host];
76         for _, res in pairs(user and user.sessions or NULL) do -- broadcast to all resources
77                 if res ~= origin and res.presence then -- to resource
78                         stanza.attr.to = res.full_jid;
79                         core_post_stanza(origin, stanza, true);
80                 end
81         end
82         for jid, item in pairs(roster) do -- broadcast to all interested contacts
83                 if item.subscription == "both" or item.subscription == "from" then
84                         stanza.attr.to = jid;
85                         core_post_stanza(origin, stanza, true);
86                 end
87         end
88         if stanza.attr.type == nil and not origin.presence then -- initial presence
89                 origin.presence = stanza; -- FIXME repeated later
90                 local probe = st.presence({from = origin.full_jid, type = "probe"});
91                 for jid, item in pairs(roster) do -- probe all contacts we are subscribed to
92                         if item.subscription == "both" or item.subscription == "to" then
93                                 probe.attr.to = jid;
94                                 core_post_stanza(origin, probe, true);
95                         end
96                 end
97                 for _, res in pairs(user and user.sessions or NULL) do -- broadcast from all available resources
98                         if res ~= origin and res.presence then
99                                 res.presence.attr.to = origin.full_jid;
100                                 core_post_stanza(res, res.presence, true);
101                                 res.presence.attr.to = nil;
102                         end
103                 end
104                 if roster.pending then -- resend incoming subscription requests
105                         for jid in pairs(roster.pending) do
106                                 origin.send(st.presence({type="subscribe", from=jid})); -- TODO add to attribute? Use original?
107                         end
108                 end
109                 local request = st.presence({type="subscribe", from=origin.username.."@"..origin.host});
110                 for jid, item in pairs(roster) do -- resend outgoing subscription requests
111                         if item.ask then
112                                 request.attr.to = jid;
113                                 core_post_stanza(origin, request, true);
114                         end
115                 end
116
117                 if priority >= 0 then
118                         local event = { origin = origin }
119                         module:fire_event('message/offline/broadcast', event);
120                 end
121         end
122         if stanza.attr.type == "unavailable" then
123                 origin.presence = nil;
124                 if origin.priority then
125                         origin.priority = nil;
126                         recalc_resource_map(user);
127                 end
128                 if origin.directed then
129                         for jid in pairs(origin.directed) do
130                                 stanza.attr.to = jid;
131                                 core_post_stanza(origin, stanza, true);
132                         end
133                         origin.directed = nil;
134                 end
135         else
136                 origin.presence = stanza;
137                 if origin.priority ~= priority then
138                         origin.priority = priority;
139                         recalc_resource_map(user);
140                 end
141         end
142         stanza.attr.to = nil; -- reset it
143 end
144
145 function send_presence_of_available_resources(user, host, jid, recipient_session, stanza)
146         local h = hosts[host];
147         local count = 0;
148         if h and h.type == "local" then
149                 local u = h.sessions[user];
150                 if u then
151                         for k, session in pairs(u.sessions) do
152                                 local pres = session.presence;
153                                 if pres then
154                                         if stanza then pres = stanza; pres.attr.from = session.full_jid; end
155                                         pres.attr.to = jid;
156                                         core_post_stanza(session, pres, true);
157                                         pres.attr.to = nil;
158                                         count = count + 1;
159                                 end
160                         end
161                 end
162         end
163         log("debug", "broadcasted presence of "..count.." resources from "..user.."@"..host.." to "..jid);
164         return count;
165 end
166
167 function handle_outbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare)
168         local node, host = jid_split(from_bare);
169         if to_bare == from_bare then return; end -- No self contacts
170         local st_from, st_to = stanza.attr.from, stanza.attr.to;
171         stanza.attr.from, stanza.attr.to = from_bare, to_bare;
172         log("debug", "outbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare);
173         if stanza.attr.type == "probe" then
174                 stanza.attr.from, stanza.attr.to = st_from, st_to;
175                 return;
176         elseif stanza.attr.type == "subscribe" then
177                 -- 1. route stanza
178                 -- 2. roster push (subscription = none, ask = subscribe)
179                 if rostermanager.set_contact_pending_out(node, host, to_bare) then
180                         rostermanager.roster_push(node, host, to_bare);
181                 end -- else file error
182                 core_post_stanza(origin, stanza);
183         elseif stanza.attr.type == "unsubscribe" then
184                 -- 1. route stanza
185                 -- 2. roster push (subscription = none or from)
186                 if rostermanager.unsubscribe(node, host, to_bare) then
187                         rostermanager.roster_push(node, host, to_bare); -- FIXME do roster push when roster has in fact not changed?
188                 end -- else file error
189                 core_post_stanza(origin, stanza);
190         elseif stanza.attr.type == "subscribed" then
191                 -- 1. route stanza
192                 -- 2. roster_push ()
193                 -- 3. send_presence_of_available_resources
194                 if rostermanager.subscribed(node, host, to_bare) then
195                         rostermanager.roster_push(node, host, to_bare);
196                 end
197                 core_post_stanza(origin, stanza);
198                 send_presence_of_available_resources(node, host, to_bare, origin);
199         elseif stanza.attr.type == "unsubscribed" then
200                 -- 1. route stanza
201                 -- 2. roster push (subscription = none or to)
202                 if rostermanager.unsubscribed(node, host, to_bare) then
203                         rostermanager.roster_push(node, host, to_bare);
204                 end
205                 core_post_stanza(origin, stanza);
206         else
207                 origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid presence type"));
208         end
209         stanza.attr.from, stanza.attr.to = st_from, st_to;
210         return true;
211 end
212
213 function handle_inbound_presence_subscriptions_and_probes(origin, stanza, from_bare, to_bare)
214         local node, host = jid_split(to_bare);
215         local st_from, st_to = stanza.attr.from, stanza.attr.to;
216         stanza.attr.from, stanza.attr.to = from_bare, to_bare;
217         log("debug", "inbound presence "..stanza.attr.type.." from "..from_bare.." for "..to_bare);
218         
219         if stanza.attr.type == "probe" then
220                 local result, err = rostermanager.is_contact_subscribed(node, host, from_bare);
221                 if result then
222                         if 0 == send_presence_of_available_resources(node, host, st_from, origin) then
223                                 core_post_stanza(hosts[host], st.presence({from=to_bare, to=st_from, type="unavailable"}), true); -- TODO send last activity
224                         end
225                 elseif not err then
226                         core_post_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unsubscribed"}), true);
227                 end
228         elseif stanza.attr.type == "subscribe" then
229                 if rostermanager.is_contact_subscribed(node, host, from_bare) then
230                         core_post_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="subscribed"}), true); -- already subscribed
231                         -- Sending presence is not clearly stated in the RFC, but it seems appropriate
232                         if 0 == send_presence_of_available_resources(node, host, from_bare, origin) then
233                                 core_post_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"}), true); -- TODO send last activity
234                         end
235                 else
236                         core_post_stanza(hosts[host], st.presence({from=to_bare, to=from_bare, type="unavailable"}), true); -- acknowledging receipt
237                         if not rostermanager.is_contact_pending_in(node, host, from_bare) then
238                                 if rostermanager.set_contact_pending_in(node, host, from_bare) then
239                                         sessionmanager.send_to_available_resources(node, host, stanza);
240                                 end -- TODO else return error, unable to save
241                         end
242                 end
243         elseif stanza.attr.type == "unsubscribe" then
244                 if rostermanager.process_inbound_unsubscribe(node, host, from_bare) then
245                         sessionmanager.send_to_interested_resources(node, host, stanza);
246                         rostermanager.roster_push(node, host, from_bare);
247                 end
248         elseif stanza.attr.type == "subscribed" then
249                 if rostermanager.process_inbound_subscription_approval(node, host, from_bare) then
250                         sessionmanager.send_to_interested_resources(node, host, stanza);
251                         rostermanager.roster_push(node, host, from_bare);
252                 end
253         elseif stanza.attr.type == "unsubscribed" then
254                 if rostermanager.process_inbound_subscription_cancellation(node, host, from_bare) then
255                         sessionmanager.send_to_interested_resources(node, host, stanza);
256                         rostermanager.roster_push(node, host, from_bare);
257                 end
258         else
259                 origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid presence type"));
260         end
261         stanza.attr.from, stanza.attr.to = st_from, st_to;
262         return true;
263 end
264
265 local outbound_presence_handler = function(data)
266         -- outbound presence recieved
267         local origin, stanza = data.origin, data.stanza;
268
269         local to = stanza.attr.to;
270         if to then
271                 local t = stanza.attr.type;
272                 if t ~= nil and t ~= "unavailable" and t ~= "error" then -- check for subscriptions and probes
273                         return handle_outbound_presence_subscriptions_and_probes(origin, stanza, jid_bare(stanza.attr.from), jid_bare(stanza.attr.to));
274                 end
275
276                 local to_bare = jid_bare(to);
277                 local roster = origin.roster;
278                 if roster and not(roster[to_bare] and (roster[to_bare].subscription == "both" or roster[to_bare].subscription == "from")) then -- directed presence
279                         origin.directed = origin.directed or {};
280                         if t then -- removing from directed presence list on sending an error or unavailable
281                                 origin.directed[to] = nil; -- FIXME does it make more sense to add to_bare rather than to?
282                         else
283                                 origin.directed[to] = true; -- FIXME does it make more sense to add to_bare rather than to?
284                         end
285                 end
286         end -- TODO maybe handle normal presence here, instead of letting it pass to incoming handlers?
287 end
288
289 module:hook("pre-presence/full", outbound_presence_handler);
290 module:hook("pre-presence/bare", outbound_presence_handler);
291 module:hook("pre-presence/host", outbound_presence_handler);
292
293 module:hook("presence/bare", function(data)
294         -- inbound presence to bare JID recieved
295         local origin, stanza = data.origin, data.stanza;
296
297         local to = stanza.attr.to;
298         local t = stanza.attr.type;
299         if to then
300                 if t ~= nil and t ~= "unavailable" and t ~= "error" then -- check for subscriptions and probes sent to bare JID
301                         return handle_inbound_presence_subscriptions_and_probes(origin, stanza, jid_bare(stanza.attr.from), jid_bare(stanza.attr.to));
302                 end
303         
304                 local user = bare_sessions[to];
305                 if user then
306                         for _, session in pairs(user.sessions) do
307                                 if session.presence then -- only send to available resources
308                                         session.send(stanza);
309                                 end
310                         end
311                 end -- no resources not online, discard
312         elseif not t or t == "unavailable" then
313                 handle_normal_presence(origin, stanza);
314         else
315                 origin.send(st.error_reply(stanza, "modify", "bad-request", "Invalid presence type"));
316         end
317         return true;
318 end);
319 module:hook("presence/full", function(data)
320         -- inbound presence to full JID recieved
321         local origin, stanza = data.origin, data.stanza;
322
323         local t = stanza.attr.type;
324         if t ~= nil and t ~= "unavailable" and t ~= "error" then -- check for subscriptions and probes sent to full JID
325                 return handle_inbound_presence_subscriptions_and_probes(origin, stanza, jid_bare(stanza.attr.from), jid_bare(stanza.attr.to));
326         end
327
328         local session = full_sessions[stanza.attr.to];
329         if session then
330                 -- TODO fire post processing event
331                 session.send(stanza);
332         end -- resource not online, discard
333         return true;
334 end);
335 module:hook("presence/host", function(data)
336         -- inbound presence to the host
337         local origin, stanza = data.origin, data.stanza;
338         
339         local from_bare = jid_bare(stanza.attr.from);
340         local t = stanza.attr.type;
341         if t == "probe" then
342                 core_post_stanza(hosts[module.host], st.presence({ from = module.host, to = from_bare, id = stanza.attr.id }));
343         elseif t == "subscribe" then
344                 core_post_stanza(hosts[module.host], st.presence({ from = module.host, to = from_bare, id = stanza.attr.id, type = "subscribed" }));
345                 core_post_stanza(hosts[module.host], st.presence({ from = module.host, to = from_bare, id = stanza.attr.id }));
346         end
347         return true;
348 end);
349
350 module:hook("resource-unbind", function(event)
351         local session, err = event.session, event.error;
352         -- Send unavailable presence
353         if session.presence then
354                 local pres = st.presence{ type = "unavailable" };
355                 if err then
356                         pres:tag("status"):text("Disconnected: "..err):up();
357                 end
358                 session:dispatch_stanza(pres);
359         elseif session.directed then
360                 local pres = st.presence{ type = "unavailable", from = session.full_jid };
361                 if err then
362                         pres:tag("status"):text("Disconnected: "..err):up();
363                 end
364                 for jid in pairs(session.directed) do
365                         pres.attr.to = jid;
366                         core_post_stanza(session, pres, true);
367                 end
368                 session.directed = nil;
369         end
370 end);