1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
|
{-# LANGUAGE CPP #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE NondecreasingIndentation #-}
{-# LANGUAGE ViewPatterns #-}
module ToxManager where
import Announcer
import Announcer.Tox
import ClientState
import Connection
import Control.Concurrent.STM
import Control.Monad
import Crypto.Tox
import Data.Bits
import Data.Function
import qualified Data.HashMap.Strict as HashMap
import qualified Data.Map as Map
import Data.Maybe
import qualified Data.Set as Set
import qualified Data.Text as T
;import Data.Text (Text)
import Data.Time.Clock.POSIX
import Data.Word
import DPut
import Network.Address
import qualified Network.Kademlia.Routing as R
;import Network.Kademlia.Routing as R
import Network.Kademlia.Search
import Network.QueryResponse
import qualified Network.Tox as Tox
;import Network.Tox
import Network.Tox.ContactInfo as Tox
import qualified Network.Tox.Crypto.Handlers as Tox
;import Network.Tox.Crypto.Handlers (UponCookie (..))
import Network.Tox.DHT.Handlers (nodeSearch, nodesOfInterest)
import Network.Tox.DHT.Handlers
import qualified Network.Tox.DHT.Transport as Tox
;import Network.Tox.DHT.Transport (FriendRequest (..), dhtpk)
import Network.Tox.Handshake (HandshakeParams (..))
import Network.Tox.NodeId
import qualified Network.Tox.Onion.Handlers as Tox
import qualified Network.Tox.Onion.Transport as Tox
;import Network.Tox.Onion.Transport (OnionData (..))
import Presence
import Text.Read
import Util (unsplitJID)
import XMPPServer as XMPP
#ifdef THREAD_DEBUG
import Control.Concurrent.Lifted.Instrument
#else
import Control.Concurrent.Lifted
import GHC.Conc (labelThread)
#endif
toxAnnounceSendData :: Tox.Tox JabberClients
-> PublicKey
-> Nonce32
-> Maybe Tox.NodeInfo
-> IO (Maybe (Tox.Rendezvous, Tox.AnnounceResponse))
toxAnnounceSendData tox pubkey token = \case
Just ni -> Tox.putRendezvous (Tox.onionTimeout tox)
(Tox.toxCryptoKeys tox)
(Tox.toxOnion tox)
(pubkey :: PublicKey)
(token :: Nonce32)
ni
Nothing -> return Nothing
akeyAccountActive :: Announcer -> Tox.NodeId{- our public tox key -} -> AnnounceKey
akeyAccountActive announcer pubid = packAnnounceKey announcer $ "toxid:" ++ show pubid
-- |
--
-- These hooks will be invoked in order to connect to *.tox hosts in a user's
-- XMPP roster.
toxman :: Announcer
-> [(String,TVar (BucketList Tox.NodeInfo))]
-> Tox.Tox JabberClients
-> PresenceState
-> ToxManager ClientAddress
toxman announcer toxbkts tox presence = ToxManager
{ activateAccount = \k pubname seckey -> do
dput XMan $ "toxman ACTIVATE " ++ show (Tox.key2id $ toPublic seckey)
let ContactInfo{ accounts } = Tox.toxContactInfo tox
pub = toPublic seckey
pubid = Tox.key2id pub
(acnt,newlyActive) <- atomically $ do
macnt <- HashMap.lookup pubid <$> readTVar accounts
acnt <- maybe (newAccount seckey Map.empty) return macnt
rs <- readTVar $ accountExtra acnt
perclient <- initPerClient
writeTVar (accountExtra acnt) $! Map.insert k perclient rs
modifyTVar accounts (HashMap.insert pubid acnt)
if not (Map.null rs)
then return (acnt,Nothing)
else return (acnt,Just $ \nid -> foldr interweave []
. map (R.kclosest (searchSpace (toxQSearch tox))
searchK
nid)
<$> mapM (readTVar . snd) toxbkts)
forM_ newlyActive $ \nearNodes -> do
-- Schedule recurring announce.
--
let akey = akeyAccountActive announcer pubid
scheduleAnnounce announcer
akey
(AnnounceMethod (toxQSearch tox)
(toxAnnounceSendData tox)
nearNodes
pubid
toxAnnounceInterval)
pub
forkAccountWatcher acnt tox presence announcer
return ()
, deactivateAccount = \k pubname -> do
dput XMan $ "toxman DECTIVATE (todo) 1 " ++ show pubname
let ContactInfo{ accounts } = Tox.toxContactInfo tox
mpubid = readMaybe $ T.unpack $ T.take 43 pubname
bStopped <- fmap (fromMaybe Nothing) $ atomically $ do
forM mpubid $ \pubid -> do
refs <- do
macnt <- HashMap.lookup pubid <$> readTVar accounts
rs <- fromMaybe Map.empty <$> mapM (readTVar . accountExtra) macnt
forM_ macnt $ \acnt -> do
-- Remove this xmpp client /k/ from the set holding this
-- account active.
modifyTVar' (accountExtra acnt) $ Map.delete k
return rs
if (Map.null $ Map.delete k refs) then do
let akey = akeyAccountActive announcer pubid
fmap Just $ forM toxbkts $ \(nm,bkts) -> do
return (akey,bkts)
else return Nothing
forM_ bStopped $ \kbkts -> do
let Just pubid = mpubid
pub = Tox.id2key pubid
-- Stop the announce-toxid task for this account. Note that other
-- announced tasks will be stopped by the forkAccountWatcher thread
-- when it terminates.
forM_ kbkts $ \(akey,bkts) -> do
cancel announcer akey
, setToxConnectionPolicy = \me them p -> do
let m = do meid <- readMaybe $ T.unpack $ T.take 43 me
themid <- readMaybe $ T.unpack $ T.take 43 them
return $ Tox.Key meid themid
dput XMan $ "toxman ConnectionPolicy " ++ show (me,them,p,fmap (const ()) m)
forM_ m $ \k -> do
setPolicy (Tox.toxMgr tox) k p
case p of
TryingToConnect -> do
let db@ContactInfo{ accounts } = Tox.toxContactInfo tox
sequence_ $ do
let Tox.Key meid themid = k
Just $ atomically $ do
accs <- readTVar accounts
case HashMap.lookup meid accs of
Nothing -> return () -- Unknown account.
Just acc -> setContactPolicy (Tox.id2key themid) TryingToConnect acc
-- If unscheduled and unconnected, schedule recurring search for this contact.
_ -> return () -- Remove contact.
, resolveToxPeer = \me them -> do
let lookupContact accs
= do meid <- readMaybe $ T.unpack me
themid <- readMaybe $ T.unpack them
acc <- HashMap.lookup meid accs
return $ HashMap.lookup themid <$> readTVar (contacts acc)
atomically $ do
accs <- let ContactInfo{ accounts } = Tox.toxContactInfo tox
in readTVar accounts
mc <- join <$> sequence (lookupContact accs)
maddr <- join <$> mapM (readTVar . contactLastSeenAddr) mc
return $ addrToPeerKey . Remote . Tox.nodeAddr . snd <$> maddr
}
key2jid :: Word32 -> PublicKey -> Text
key2jid nospam key = T.pack $ show $ NoSpamId nsp key
where
nsp = NoSpam nospam (Just sum)
sum = nlo `xor` nhi `xor` xorsum key
nlo = fromIntegral (0x0FFFF .&. nospam) :: Word16
nhi = fromIntegral (0x0FFFF .&. (nospam `shiftR` 16)) :: Word16
type JabberClients = Map.Map ClientAddress PerClient
data PerClient = PerClient
{ pcDeliveredFRs :: TVar (Set.Set Tox.FriendRequest)
}
initPerClient :: STM PerClient
initPerClient = do
frs <- newTVar Set.empty
return PerClient
{ pcDeliveredFRs = frs
}
data ToxToXMPP = ToxToXMPP
{ txAnnouncer :: Announcer
, txAccount :: Account JabberClients
, txPresence :: PresenceState
, txTox :: Tox JabberClients
}
default_nospam :: Word32
default_nospam = 0x6a7a27fc -- big-endian base64: anon/A==
nodeinfoStaleTime :: POSIXTime
nodeinfoStaleTime = 600
nodeinfoSearchInterval :: POSIXTime
nodeinfoSearchInterval = 15
data Awaiting v = Since POSIXTime
data Acquired v = At POSIXTime v
data Moot v = Moot
data NNS a b c = NNS { -- NetcryptoNegotiationState
sessionDesired :: Bool,
theirPublicKey :: a Tox.DHTPublicKey,
theirAddress :: b NodeInfo,
theirCookie :: c (Tox.Cookie Encrypted),
sessionIsActive :: Bool
}
data NS
= Stage1 (NNS Moot Moot Moot)
| Stage2 (NNS Awaiting Moot Moot)
| Stage3 (NNS Acquired Awaiting Moot)
| Stage4 (NNS Acquired Acquired Awaiting)
| Stage5 (NNS Acquired Acquired Acquired)
gotDhtPubkey :: Tox.DHTPublicKey -> ToxToXMPP -> PublicKey -> IO ()
gotDhtPubkey theirDhtKey tx theirKey = do
contact <- atomically $ getContact theirKey (txAccount tx) >>= mapM (readTVar . contactLastSeenAddr)
forM_ contact $ \lastSeen -> do
case lastSeen of
Nothing -> doSearch
Just (tm, _) -> do
now <- getPOSIXTime
when (now - tm > nodeinfoStaleTime) doSearch
where
tox :: Tox JabberClients
tox = txTox tx
myPublicKey = toPublic $ userSecret (txAccount tx)
me = key2id myPublicKey
doSearch = do
let akey = akeyConnect (txAnnouncer tx) me theirKey
atomically $ registerNodeCallback (toxRouting tox) (nic akey)
scheduleSearch (txAnnouncer tx) akey meth theirDhtKey
target :: NodeId
target = key2id $ dhtpk theirDhtKey
meth :: SearchMethod Tox.DHTPublicKey
meth =
SearchMethod
{ sSearch = nodeSearch (toxDHT tox) (nodesOfInterest $ toxRouting tox)
, sNearestNodes = nearNodes tox
, sTarget = target
, sInterval = nodeinfoSearchInterval
, sWithResult = \r sr -> return ()
}
nic akey =
NodeInfoCallback
{ interestingNodeId = target
, listenerId = 2
, observedAddress = observe akey
, rumoredAddress = assume akey
}
assume :: AnnounceKey -> POSIXTime -> SockAddr -> NodeInfo -> STM ()
assume akey time addr ni =
tput XNodeinfoSearch $ show ("rumor", akey, time, addr, ni)
observe :: AnnounceKey -> POSIXTime -> NodeInfo -> STM ()
observe akey time ni@(nodeAddr -> addr) = do
tput XNodeinfoSearch $ show ("observation", akey, time, addr)
setContactAddr time theirKey ni (txAccount tx)
gotAddr :: NodeInfo -> ToxToXMPP -> PublicKey -> IO ()
gotAddr ni@(nodeAddr -> addr) tx theirKey = do
dhtkey <- (fmap.fmap) snd $
fmap join $
atomically $
traverse readTVar =<< fmap contactKeyPacket <$> getContact theirKey (txAccount tx)
forM_ dhtkey $ gotAddr' ni tx theirKey
gotAddr' :: NodeInfo -> ToxToXMPP -> PublicKey -> Tox.DHTPublicKey -> IO ()
gotAddr' ni@(nodeAddr -> addr) tx theirKey theirDhtKey = atomically blee
where
myPublicKey = toPublic $ userSecret (txAccount tx)
me = key2id myPublicKey
akey = akeyConnect (txAnnouncer tx) me theirKey
blee = do
scheduleImmediately (txAnnouncer tx) akey $
ScheduledItem $ getCookie ni (activeSesh addr) (getContact theirKey (txAccount tx))
tox :: Tox JabberClients
tox = txTox tx
byAddr :: TVar (Map.Map SockAddr Tox.NetCryptoSession)
byAddr = Tox.netCryptoSessions (toxCryptoSessions tox)
crypto = Tox.transportCrypto $ toxCryptoSessions tox
readNcVar :: (Tox.NetCryptoSession -> TVar b) -> SockAddr -> STM (Maybe b)
readNcVar v addr = traverse readTVar =<< fmap v . Map.lookup addr <$> readTVar byAddr
chillSesh :: SockAddr -> STM (Maybe (Status Tox.ToxProgress))
chillSesh = readNcVar Tox.ncState
activeSesh :: SockAddr -> STM Bool
activeSesh a = chillSesh a >>= return . \case
Just Established -> True
_ -> False
readCookie :: SockAddr -> STM (Maybe (UponCookie (Tox.Cookie Encrypted)))
readCookie = readNcVar Tox.ncCookie
readCookie' :: SockAddr -> STM (Maybe (Tox.Cookie Encrypted))
readCookie' = fmap join . (fmap.fmap) Tox.toMaybe . readCookie
client :: Network.Tox.DHT.Handlers.Client
client = toxDHT tox
getCookie
:: NodeInfo
-> STM Bool
-> STM (Maybe Contact)
-> Announcer
-> AnnounceKey
-> POSIXTime
-> STM (IO ())
getCookie ni isActive getC ann akey now = getCookieAgain
where
getCookieAgain = do
tput XNodeinfoSearch $ show ("getCookieAgain", akey)
mbContact <- getC
case mbContact of
Nothing -> return $ return ()
Just contact -> do
active <- isActive
return $ when (not active) getCookieIO
callRealShakeHands = realShakeHands (userSecret (txAccount tx)) theirKey (dhtpk theirDhtKey) (toxCryptoSessions tox) (nodeAddr ni)
reschedule n f = scheduleRel ann akey f n
reschedule' n f = reschedule n (ScheduledItem $ \_ _ now -> f now)
cookieMaxAge = 60 * 5
getCookieIO :: IO ()
getCookieIO = do
dput XUnused "getCookieIO - entered"
cookieRequest crypto client myPublicKey ni >>= \case
Nothing -> atomically $ reschedule' 5 (const getCookieAgain)
Just cookie -> do
void $ callRealShakeHands cookie
cookieCreationStamp <- getPOSIXTime
let shaker :: POSIXTime -> STM (IO ())
shaker now = do
active <- isActive
if (active)
then return $ return ()
else if (now > cookieCreationStamp + cookieMaxAge)
then return $
dput XUnused "getCookieIO/shaker - cookie expired" >>
getCookieIO
else do
reschedule' 5 shaker
return . void $ callRealShakeHands cookie
atomically $ reschedule' 5 shaker
realShakeHands :: SecretKey -> PublicKey -> PublicKey -> Tox.NetCryptoSessions -> SockAddr -> Tox.Cookie Encrypted -> IO Bool
realShakeHands myseckey theirpubkey theirDhtKey allsessions saddr cookie = do
dput XUnused "realShakeHands"
let hp =
HParam
{ hpOtherCookie = cookie
, hpMySecretKey = myseckey
, hpCookieRemotePubkey = theirpubkey
, hpCookieRemoteDhtkey = theirDhtKey
, hpTheirBaseNonce = Nothing
, hpTheirSessionKeyPublic = Nothing
}
newsession <- generateSecretKey
timestamp <- getPOSIXTime
(myhandshake, ioAction) <-
atomically $
Tox.freshCryptoSession allsessions saddr newsession timestamp hp
ioAction
-- send handshake
isJust <$> forM myhandshake (Tox.sendHandshake allsessions saddr)
dispatch :: ToxToXMPP -> ContactEvent -> IO ()
dispatch tx (SessionEstablished theirKey) = stopConnecting tx theirKey "established"
dispatch tx (SessionTerminated theirKey) = startConnecting tx theirKey "terminated"
dispatch tx (AddrChange theirKey saddr) = gotAddr saddr tx theirKey
dispatch tx (PolicyChange theirkey TryingToConnect ) = startConnecting tx theirkey "policy"
dispatch tx (PolicyChange theirkey policy ) = stopConnecting tx theirkey "policy"
dispatch tx (OnionRouted theirKey (OnionDHTPublicKey pkey)) = gotDhtPubkey pkey tx theirKey
dispatch tx (OnionRouted theirkey (OnionFriendRequest fr) ) = do
let ToxToXMPP { txAnnouncer = acr
, txAccount = acnt
, txPresence = st } = tx
k2c <- atomically $ do
refs <- readTVar (accountExtra acnt)
k2c <- Map.intersectionWith (,) refs <$> readTVar (ckeyToChan st)
clients <- readTVar (clients st)
return $ Map.intersectionWith (,) k2c clients
-- TODO: Below we're using a hard coded default as their jabber user id.
-- This isn't the right thing, but we don't know their user-id. Perhaps
-- there should be a way to parse it out of the friend request text. Maybe
-- after a zero-termination, or as visible text (nospam:...).
let theirjid = key2jid default_nospam theirkey
forM_ k2c $ \((PerClient{pcDeliveredFRs},conn),client) -> do
alreadyDelivered <- atomically $ do
frs <- readTVar pcDeliveredFRs
writeTVar pcDeliveredFRs $ Set.insert fr frs
return $ Set.member fr frs
when (not alreadyDelivered) $ do
self <- localJID (clientUser client) (clientProfile client) (clientResource client)
ask <- presenceSolicitation theirjid self
-- TODO Send friend-request text as an instant message or at least
-- embed it in the stanza as a <status> element.
sendModifiedStanzaToClient ask (connChan conn)
interweave :: [a] -> [a] -> [a]
interweave [] ys = ys
interweave (x:xs) ys = x : interweave ys xs
akeyDHTKeyShare :: Announcer -> NodeId -> PublicKey -> AnnounceKey
akeyDHTKeyShare announcer me them =
packAnnounceKey announcer $ "dhtkey(" ++ (take 8 $ show me) ++ ")" ++ show (key2id them)
akeyConnect :: Announcer -> NodeId -> PublicKey -> AnnounceKey
akeyConnect announcer me them =
packAnnounceKey announcer $ "connect(" ++ (take 8 $ show me) ++ ")" ++ show (key2id them)
-- | Returns a list of nospam values to use for friend requests to send to a
-- remote peer. This list is non-empty only when it is desirable to send
-- friend requests.
checkSoliciting :: PresenceState -> PublicKey -> PublicKey -> Contact -> IO [NoSpam]
checkSoliciting presence me them contact = do
let theirhost = T.pack $ show (key2id them) ++ ".tox"
myhost = T.pack $ show (key2id me) ++ ".tox"
xs <- getBuddiesAndSolicited presence myhost $ \h -> do
return $ T.toLower h == T.toLower theirhost
return $ do
(is_buddy,their_u,my_uid,xmpp_client_profile) <- xs
guard $ xmpp_client_profile == myhost
NoSpamId nospam _ <- case fmap T.unpack $ their_u of
Just ('$':_) -> maybeToList $ readMaybe $ T.unpack $ unsplitJID (their_u,theirhost,Nothing)
Just ('0':'x':_) -> maybeToList $ readMaybe $ T.unpack $ unsplitJID (their_u,theirhost,Nothing)
_ -> maybeToList $ readMaybe $ T.unpack $ key2jid default_nospam them
return nospam
nearNodes :: Tox extra -> NodeId -> STM [NodeInfo]
nearNodes tox nid = do
bkts4 <- readTVar $ routing4 $ toxRouting tox
bkts6 <- readTVar $ routing6 $ toxRouting tox
let nss =
map
(R.kclosest (searchSpace (toxQSearch tox)) searchK nid)
[bkts4, bkts6]
return $ foldr interweave [] nss
startConnecting0 :: ToxToXMPP -> PublicKey -> Contact -> String -> IO ()
startConnecting0 tx them contact reason = do
dput XMan $ "START CONNECTING " ++ show (key2id them) ++ "("++reason++")"
-- TODO When a connection is already established, this function should
-- be a no-op. This occurs when an XMPP client disconnects and
-- reconnects while a session is established.
let ToxToXMPP { txTox = tox
, txAnnouncer = announcer
, txAccount = acnt } = tx
let nearNodes nid = do
bkts4 <- readTVar $ routing4 $ toxRouting tox
bkts6 <- readTVar $ routing6 $ toxRouting tox
let nss = map (R.kclosest (searchSpace (toxQSearch tox)) searchK nid)
[bkts4,bkts6]
return $ foldr interweave [] nss
wanted <- atomically $ (==Just TryingToConnect) <$> readTVar (contactPolicy contact)
let mypub = toPublic $ userSecret acnt
me = key2id mypub
soliciting <- checkSoliciting (txPresence tx) mypub them contact
when wanted $ do
akey <- return $ akeyDHTKeyShare announcer me them
-- We send this packet every 30 seconds if there is more
-- than one peer (in the 8) that says they our friend is
-- announced on them. This packet can also be sent through
-- the DHT module as a DHT request packet (see DHT) if we
-- know the DHT public key of the friend and are looking
-- for them in the DHT but have not connected to them yet.
-- 30 second is a reasonable timeout to not flood the
-- network with too many packets while making sure the
-- other will eventually receive the packet. Since packets
-- are sent through every peer that knows the friend,
-- resending it right away without waiting has a high
-- likelihood of failure as the chances of packet loss
-- happening to all (up to to 8) packets sent is low.
--
let meth = SearchMethod (toxQSearch tox) onResult nearNodes (key2id them) 30
where
onResult theirkey rendezvous = do
dkey <- Tox.getContactInfo tox
let tr = Tox.toxToRoute tox
route = Tox.AnnouncedRendezvous theirkey rendezvous
dput XMan $ unwords [ take 8 (show $ key2id mypub) ++ ":"
, "Sending my DHT-key"
, show (key2id $ Tox.dhtpk dkey)
, "to"
, show (key2id theirkey)
, "via"
, show (Tox.rendezvousNode rendezvous)
]
sendMessage tr route (mypub,Tox.OnionDHTPublicKey dkey)
forM_ soliciting $ \cksum@(NoSpam nospam _)-> do
dput XMan $ unwords [ take 8 (show $ key2id mypub) ++ ":"
, "Sending friend-request"
, "with nospam"
, "(" ++ nospam64 cksum ++ "," ++nospam16 cksum ++ ")"
, "to"
, show (key2id theirkey)
, "via"
, show (Tox.rendezvousNode rendezvous)
]
let fr = FriendRequest
{ friendNoSpam = nospam
, friendRequestText = "XMPP friend request"
}
sendMessage tr route (mypub,Tox.OnionFriendRequest fr)
scheduleSearch announcer akey meth them
startConnecting :: ToxToXMPP -> PublicKey -> String -> IO ()
startConnecting tx them reason = do
mc <- atomically $ HashMap.lookup (key2id them)
<$> readTVar (contacts $ txAccount tx)
forM_ mc $ flip (startConnecting0 tx them) reason
stopConnecting :: ToxToXMPP -> PublicKey -> String -> IO ()
stopConnecting ToxToXMPP{txAnnouncer=announcer,txAccount=acnt} them reason = do
dput XMan $ "STOP CONNECTING " ++ show (key2id them) ++ "("++reason++")"
let pub = toPublic $ userSecret acnt
me = key2id pub
akeyC = akeyConnect announcer me them
akeyD = akeyDHTKeyShare announcer me them
cancel announcer akeyC
cancel announcer akeyD
forkAccountWatcher :: Account JabberClients -> Tox JabberClients -> PresenceState -> Announcer -> IO ThreadId
forkAccountWatcher acc tox st announcer = forkIO $ do
myThreadId >>= flip labelThread ("tox-xmpp:"
++ show (key2id $ toPublic $ userSecret acc))
(chan,cs) <- atomically $ do
chan <- dupTChan $ eventChan acc -- duplicate broadcast channel for reading.
contacts <- readTVar (contacts acc)
return (chan,contacts)
let tx = ToxToXMPP { txAnnouncer = announcer
, txAccount = acc
, txPresence = st
, txTox = tox
}
forM_ (HashMap.toList cs) $ \(them,c) -> do
startConnecting0 tx (id2key them) c "enabled account"
-- Loop endlessly until accountExtra is null.
fix $ \loop -> do
mev <- atomically $
(Just <$> readTChan chan)
`orElse` do
refs <- readTVar $ accountExtra acc
check $ Map.null refs
return Nothing
forM_ mev $ \ev -> dispatch tx ev >> loop
cs <- atomically $ readTVar (contacts acc)
forM_ (HashMap.toList cs) $ \(them,c) -> do
stopConnecting tx (id2key them) "disabled account"
toxQSearch :: Tox extra -> Search Tox.NodeId (IP, PortNumber) Nonce32 Tox.NodeInfo Tox.Rendezvous
toxQSearch tox = Tox.toxidSearch (Tox.onionTimeout tox) (Tox.toxCryptoKeys tox) (Tox.toxOnion tox)
toxAnnounceInterval :: POSIXTime
toxAnnounceInterval = 15
|