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