summaryrefslogtreecommitdiff
path: root/Presence/main.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Presence/main.hs')
-rw-r--r--Presence/main.hs56
1 files changed, 55 insertions, 1 deletions
diff --git a/Presence/main.hs b/Presence/main.hs
index eab02e88..5cccffea 100644
--- a/Presence/main.hs
+++ b/Presence/main.hs
@@ -207,6 +207,23 @@ instance JabberClientSession ClientSession where
207 L.putStrLn $ "cached presence: " <++> bshow p 207 L.putStrLn $ "cached presence: " <++> bshow p
208 action p 208 action p
209 209
210 sendPending s = do
211 jid <- getJID s
212 putStrLn $ "sendPending "<++> bshow jid
213 flip (maybe (return ())) (name jid) $ \user -> do
214 pending <- ConfigFiles.getPending user
215 let getRChan = do
216 let rchan = rosterChannel . presence_state $ s
217 isempty <- isEmptyTMVar rchan
218 if (not isempty)
219 then do
220 (_,ch) <- readTMVar rchan
221 return . Just $ ch
222 else return Nothing
223 atomically $ do
224 whenJust getRChan $ \rchan -> do
225 forM_ pending (writeTChan rchan . PendingBuddy user)
226
210 addSolicited s jid_str jid = do 227 addSolicited s jid_str jid = do
211 me <- getJID s 228 me <- getJID s
212 withJust (name me) $ \user -> do 229 withJust (name me) $ \user -> do
@@ -247,6 +264,21 @@ instance JabberClientSession ClientSession where
247 msubs <- mapM (cmpJID cjid) subs 264 msubs <- mapM (cmpJID cjid) subs
248 return (Nothing `elem` msubs) 265 return (Nothing `elem` msubs)
249 266
267 approveSubscriber s contact = do
268 user <- readIORef (unix_uid s) >>= getJabberUserForId
269 cjid <- parseHostNameJID contact
270 let rmjid modify user buddy = modify user (cmpJID buddy) Nothing
271 addRawJid ConfigFiles.modifySubscribers user contact -- add subscribers
272 rmjid ConfigFiles.modifyPending user cjid
273 rmjid ConfigFiles.modifyOthers user cjid
274 -- TODO
275 -- roster push (to other clients, or do we include the approver?)
276 sendMessage (outGoingConnections . presence_state $ s)
277 (Approval (JID (Just user) LocalHost Nothing)
278 cjid)
279 (peer cjid)
280
281
250tupleToJID (user,tty,pid) = jid user LocalHost tty 282tupleToJID (user,tty,pid) = jid user LocalHost tty
251 283
252data PeerSession = PeerSession { 284data PeerSession = PeerSession {
@@ -330,7 +362,29 @@ instance JabberPeerSession PeerSession where
330 (_,ch) <- readTMVar rchan 362 (_,ch) <- readTMVar rchan
331 writeTChan ch (NewBuddy user buddy) 363 writeTChan ch (NewBuddy user buddy)
332 return () 364 return ()
333 365 processRequest session user buddy = do
366 let addjid modify user buddy = do
367 hbuddy <- asHostNameJID buddy
368 modify user (cmpJID buddy) hbuddy
369 was_pending <- addjid ConfigFiles.modifyPending user buddy
370 putStrLn $ "processRequest was_pending="<++>bshow was_pending
371 -- "all available resources in accordence with section 8"
372 -- Section 8 says (for presence of type "subscribe", the server MUST
373 -- adhere to the rules defined under Section 3 and summarized under
374 -- Appendix A.
375 -- Appendex A.3.1 says
376 -- contact ∈ subscribers --> SHOULD NOT, already handled
377 -- contact ∉ subscribers & contact ∈ pending --> SHOULD NOT
378 -- contact ∉ subscribers & contact ∉ pending --> MUST
379 when (not was_pending) $ do
380 let rchan = rosterChannel . peer_global $ session
381 mbuddy <- asHostNameJID buddy
382 withJust mbuddy $ \buddy -> do
383 atomically $ do
384 isempty <- isEmptyTMVar rchan
385 when (not isempty) $ do
386 (_,ch) <- readTMVar rchan
387 writeTChan ch (PendingBuddy user buddy)
334 388
335 389
336data RefCountedChan = forall a. RefCountedChan (TMVar (RefCount,TChan a)) 390data RefCountedChan = forall a. RefCountedChan (TMVar (RefCount,TChan a))