This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMain.hs
2324 lines (2182 loc) · 114 KB
/
Main.hs
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE NamedFieldPuns #-}
import Prelude (show, read)
import BasicPrelude hiding (show, read, forM, mapM, forM_, mapM_, getArgs, log)
import System.IO (stdout, stderr, hSetBuffering, BufferMode(LineBuffering))
import Data.Char
import Control.Concurrent
import Control.Concurrent.STM
import Data.Foldable (forM_, mapM_, toList)
import Data.Traversable (forM, mapM)
import System.Environment (getArgs)
import System.Exit (die)
import Control.Error (readZ, MaybeT(..), hoistMaybe, headZ, justZ, hush, atZ)
import Data.Time (UTCTime, addUTCTime, diffUTCTime, getCurrentTime)
import Network.Socket (PortNumber)
import Network.URI (parseURI, uriPath, escapeURIString)
import System.Random (Random(randomR), getStdRandom)
import System.Random.Shuffle (shuffleM)
import Data.Digest.Pure.SHA (sha1, bytestringDigest, showDigest)
import Network.StatsD (openStatsD)
import qualified Network.StatsD as StatsD
import Magic (Magic, MagicFlag(MagicMimeType), magicOpen, magicLoadDefault, magicFile)
import Network.Mime (defaultMimeMap)
import "monads-tf" Control.Monad.Error (catchError) -- ick
import Data.XML.Types as XML (Element(..), Node(NodeContent, NodeElement), Content(ContentText), isNamed, hasAttributeText, elementText, elementChildren, attributeText, attributeContent, hasAttribute, nameNamespace)
import UnexceptionalIO (Unexceptional, UIO)
import qualified UnexceptionalIO as UIO
import qualified Dhall
import qualified Jingle
import qualified Jingle.StoreChunks as Jingle
import qualified Data.CaseInsensitive as CI
import qualified Data.Text as T
import qualified Data.Text.Encoding as T
import qualified Data.Map as Map
import qualified Data.Map.Strict as SMap
import qualified Data.UUID as UUID ( toString )
import qualified Data.UUID.V1 as UUID ( nextUUID )
import qualified Data.ByteString.Lazy as LZ
import qualified Data.ByteString as BS
import qualified Data.ByteString.Base64 as Base64
import qualified Data.ByteString.Builder as Builder
import qualified Database.Redis as Redis
import qualified Text.Regex.PCRE.Light as PCRE
import qualified Network.Http.Client as HTTP
import qualified System.IO.Streams as Streams
import Network.Protocol.XMPP as XMPP -- should import qualified
import Util
import IQManager
import qualified ConfigureDirectMessageRoute
import qualified JidSwitch
import qualified Config
import qualified DB
import qualified VCard4
import Adhoc (adhocBotSession, commandList, queryCommandList)
import StanzaRec
instance Ord JID where
compare x y = compare (show x) (show y)
-- Do not use uncommon file extensions for ambiguous MIME types
badExts :: [Text]
badExts = [
s"mpg4", s"mp4v",
s"mpga", s"m2a", s"m3a", s"mp2", s"mp2a",
s"m1v", s"m2v", s"mpe"
]
mimeToExtMap :: SMap.Map String Text
mimeToExtMap = SMap.fromList $
(\xs -> ("audio/amr", s"amr") : ("audio/AMR", s"amr") : xs) $
mapMaybe (\(ext, mimeBytes) ->
if ext `elem` badExts then
Nothing
else
Just (textToString (decodeUtf8 mimeBytes), ext)
) $ SMap.toList defaultMimeMap
queryDisco to from = (:[]) . mkStanzaRec <$> queryDiscoWithNode Nothing to from
queryDiscoWithNode node to from = do
uuid <- (fmap.fmap) (fromString . UUID.toString) UUID.nextUUID
return $ (queryDiscoWithNode' node to from) {
iqID = uuid
}
fillFormField var value form = form {
elementNodes = map (\node ->
case node of
NodeElement el
| elementName el == fromString "{jabber:x:data}field" &&
(attributeText (fromString "{jabber:x:data}var") el == Just var ||
attributeText (fromString "var") el == Just var) ->
NodeElement $ el { elementNodes = [
NodeElement $ Element (fromString "{jabber:x:data}value") []
[NodeContent $ ContentText value]
]}
x -> x
) (elementNodes form)
}
data Invite = Invite {
inviteMUC :: JID,
inviteFrom :: JID,
inviteText :: Maybe Text,
invitePassword :: Maybe Text
} deriving (Show)
getMediatedInvitation m = do
from <- messageFrom m
x <- listToMaybe $ isNamed (fromString "{http://jabber.org/protocol/muc#user}x") =<< messagePayloads m
invite <- listToMaybe $ isNamed (fromString "{http://jabber.org/protocol/muc#user}invite") =<< elementChildren x
inviteFrom <- parseJID =<< attributeText (fromString "from") invite
return Invite {
inviteMUC = from,
inviteFrom = inviteFrom,
inviteText = do
txt <- mconcat . elementText <$> listToMaybe
(isNamed (fromString "{http://jabber.org/protocol/muc#user}reason") =<< elementChildren invite)
guard (not $ T.null txt)
return txt,
invitePassword =
mconcat . elementText <$> listToMaybe
(isNamed (fromString "{http://jabber.org/protocol/muc#user}password") =<< elementChildren x)
}
getDirectInvitation m = do
x <- listToMaybe $ isNamed (fromString "{jabber:x:conference}x") =<< messagePayloads m
Invite <$>
(parseJID =<< attributeText (fromString "jid") x) <*>
messageFrom m <*>
Just (do
txt <- attributeText (fromString "reason") x
guard (not $ T.null txt)
return txt
) <*>
Just (attributeText (fromString "password") x)
nickFor db componentJid jid existingRoom
| fmap bareTxt existingRoom == Just bareFrom = return $ fromMaybe (s"nonick") resourceFrom
| jidDomain componentJid == jidDomain jid,
Just tel <- mfilter isE164 (strNode <$> jidNode jid) = do
mnick <- DB.get db (DB.byNode jid ["nick"])
case mnick of
Just nick -> return (tel <> s" \"" <> nick <> s"\"")
Nothing -> return tel
| otherwise = return bareFrom
where
bareFrom = bareTxt jid
resourceFrom = strResource <$> jidResource jid
code str status =
hasAttributeText (fromString "{http://jabber.org/protocol/muc#user}code") (== fromString str) status
<>
hasAttributeText (fromString "code") (== fromString str) status
-- When we're talking to the adhoc bot we'll get a command from stuff\[email protected]
-- When they're talking to us directly, we'll get the command from [email protected]
-- In either case, we want to use the same key and understand it as coming from the same user
maybeUnescape componentJid userJid
| jidDomain userJid == jidDomain componentJid,
Just node <- jidNode userJid =
let resource = maybe mempty strResource $ jidResource userJid
in
-- If we can't parse the thing we unescaped, just return the original
fromMaybe userJid $ parseJID (unescapeJid (strNode node) ++ if T.null resource then mempty else s"/" ++ resource)
| otherwise = userJid
cheogramDiscoInfo db componentJid sendIQ from q = do
canVoice <- isJust <$> getSipProxy db componentJid sendIQ from
return $ Element (s"{http://jabber.org/protocol/disco#info}query")
(map (\node -> (s"{http://jabber.org/protocol/disco#info}node", [ContentText node])) $ maybeToList $ nodeAttribute =<< q)
(catMaybes [
Just $ NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}identity") [
(s"category", [ContentText $ s"gateway"]),
(s"type", [ContentText $ s"sms"]),
(s"name", [ContentText $ s"Cheogram"])
] [],
mfilter (const canVoice) $ Just $ NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}identity") [
(s"category", [ContentText $ s"gateway"]),
(s"type", [ContentText $ s"pstn"]),
(s"name", [ContentText $ s"Cheogram"])
] [],
Just $ NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}feature") [
(s"var", [ContentText $ s"http://jabber.org/protocol/commands"])
] [],
Just $ NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}feature") [
(s"var", [ContentText $ s"jabber:iq:gateway"])
] [],
Just $ NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}feature") [
(s"var", [ContentText $ s"jabber:iq:register"])
] [],
Just $ NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}feature") [
(s"var", [ContentText $ s"urn:xmpp:ping"])
] [],
Just $ NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}feature") [
(s"var", [ContentText $ s"vcard-temp"])
] []
])
cheogramAvailable db componentJid sendIQ from to = do
disco <- cheogramDiscoInfo db componentJid sendIQ to Nothing
let ver = T.decodeUtf8 $ Base64.encode $ discoToCapsHash disco
return $ (emptyPresence PresenceAvailable) {
presenceTo = Just to,
presenceFrom = Just from,
presencePayloads = [
Element (s"{http://jabber.org/protocol/caps}c") [
(s"{http://jabber.org/protocol/caps}hash", [ContentText $ fromString "sha-1"]),
(s"{http://jabber.org/protocol/caps}node", [ContentText $ fromString "xmpp:cheogram.com"]),
(s"{http://jabber.org/protocol/caps}ver", [ContentText ver])
] []
]
}
telDiscoFeatures = [
s"http://jabber.org/protocol/muc",
s"jabber:x:conference",
s"urn:xmpp:ping",
s"urn:xmpp:receipts",
s"vcard-temp",
s"urn:xmpp:jingle:1",
s"urn:xmpp:jingle:apps:file-transfer:3",
s"urn:xmpp:jingle:apps:file-transfer:5",
s"urn:xmpp:jingle:transports:s5b:1",
s"urn:xmpp:jingle:transports:ibb:1"
]
getSipProxy :: DB.DB -> JID -> (IQ -> UIO (STM (Maybe IQ))) -> JID -> IO (Maybe Text)
getSipProxy db componentJid sendIQ jid = do
maybeProxy <- DB.get db (DB.byJid jid ["sip-proxy"])
case maybeProxy of
Just proxy -> return $ Just proxy
Nothing ->
(extractSip =<<) <$> routeQueryStateful db componentJid sendIQ jid Nothing query
where
query jidTo jidFrom = return $ (emptyIQ IQGet) {
iqTo = Just jidTo,
iqFrom = Just jidFrom,
iqPayload = Just $ XML.Element (s"{urn:xmpp:extdisco:2}services") [
(s"type", [XML.ContentText $ s"sip"])
] []
}
extractSip (IQ { iqPayload = payload }) =
headZ $
(mapMaybe (attributeText (s"host")) $
filter (\el -> attributeText (s"type") el == Just (s"sip")) $
isNamed (s"{urn:xmpp:extdisco:2}service") =<<
elementChildren =<< (justZ payload))
getTelFeatures db componentJid sendIQ jid = do
maybeProxy <- getSipProxy db componentJid sendIQ jid
log "TELFEATURES" (jid, maybeProxy)
return $ maybe [] (const $ [s"urn:xmpp:jingle:transports:ice-udp:1", s"urn:xmpp:jingle:apps:dtls:0", s"urn:xmpp:jingle:apps:rtp:1", s"urn:xmpp:jingle:apps:rtp:audio", s"urn:xmpp:jingle-message:0"]) maybeProxy
telCapsStr extraVars =
s"client/sms//Cheogram<" ++ mconcat (intersperse (s"<") (sort (nub (telDiscoFeatures ++ extraVars)))) ++ s"<"
telAvailable from to disco =
(emptyPresence PresenceAvailable) {
presenceTo = Just to,
presenceFrom = Just fromWithResource,
presencePayloads = [
Element (s"{http://jabber.org/protocol/caps}c") [
(s"{http://jabber.org/protocol/caps}hash", [ContentText $ fromString "sha-1"]),
(s"{http://jabber.org/protocol/caps}node", [ContentText $ fromString "xmpp:cheogram.com"]),
(s"{http://jabber.org/protocol/caps}ver", [ContentText hash])
] []
]
}
where
fromWithResource
| Nothing <- jidResource from,
Just newFrom <- parseJID (bareTxt from ++ s"/tel") = newFrom
| otherwise = from
hash = T.decodeUtf8 $ Base64.encode $ LZ.toStrict $ bytestringDigest $ sha1 $ LZ.fromStrict $ T.encodeUtf8 $ telCapsStr disco
nodeAttribute el =
attributeText (s"{http://jabber.org/protocol/disco#info}node") el <|>
attributeText (s"node") el
telDiscoInfo q id from to disco =
(emptyIQ IQResult) {
iqTo = Just to,
iqFrom = Just from,
iqID = Just id,
iqPayload = Just $ Element (fromString "{http://jabber.org/protocol/disco#info}query")
(map (\node -> (s"{http://jabber.org/protocol/disco#info}node", [ContentText node])) $ maybeToList $ nodeAttribute q) $
[
NodeElement $ Element (s"{http://jabber.org/protocol/disco#info}identity") [
(s"{http://jabber.org/protocol/disco#info}category", [ContentText $ s"client"]),
(s"{http://jabber.org/protocol/disco#info}type", [ContentText $ s"sms"]),
(s"{http://jabber.org/protocol/disco#info}name", [ContentText $ s"Cheogram"])
] []
] ++ map (\var ->
NodeElement $ Element (fromString "{http://jabber.org/protocol/disco#info}feature") [
(fromString "{http://jabber.org/protocol/disco#info}var", [ContentText var])
] []
) (sort $ nub $ telDiscoFeatures ++ disco)
}
routeQueryOrReply db componentJid from smsJid resource query reply = do
maybeRoute <- DB.get db (DB.byJid from ["direct-message-route"])
case (maybeRoute, maybeRouteFrom) of
(Just route, Just routeFrom) ->
let routeTo = fromMaybe componentJid $ parseJID $ (maybe mempty (++ s"@") $ strNode <$> jidNode smsJid) ++ route in
query routeTo routeFrom
_ -> return [mkStanzaRec $ reply]
where
maybeRouteFrom = parseJID $ escapeJid (bareTxt from) ++ s"@" ++ formatJID componentJid ++ s"/" ++ (fromString resource)
routeQueryStateful db componentJid sendIQ from targetNode query = hasLocked "routeQueryStateful" $ do
maybeRoute <- DB.get db (DB.byJid from ["direct-message-route"])
case (maybeRoute, maybeRouteFrom) of
(Just route, Just routeFrom) -> do
let Just routeTo = parseJID $ (maybe mempty (++ s"@") $ strNode <$> targetNode) ++ route
iqToSend <- query routeTo routeFrom
result <- atomicUIO =<< UIO.lift (sendIQ iqToSend)
return $ mfilter ((==IQResult) . iqType) result
_ -> return Nothing
where
maybeRouteFrom = parseJID $ escapeJid (bareTxt from) ++ s"@" ++ formatJID componentJid ++ s"/IQMANAGER"
routeDiscoStateful db componentJid sendIQ from targetNode node =
routeQueryStateful db componentJid sendIQ from targetNode (queryDiscoWithNode node)
routeDiscoOrReply db componentJid from smsJid resource node reply =
routeQueryOrReply db componentJid from smsJid resource (fmap (pure . mkStanzaRec) .: queryDiscoWithNode node) reply
deliveryReceipt id from to =
(emptyMessage MessageNormal) {
messageFrom = Just from,
messageTo = Just to,
messagePayloads = [
Element (s"{urn:xmpp:receipts}received")
[(s"{urn:xmpp:receipts}id", [ContentText id])] []
]
}
iqNotImplemented iq =
iq {
iqTo = iqFrom iq,
iqFrom = iqTo iq,
iqType = IQError,
iqPayload = Just $ Element (s"{jabber:component:accept}error")
[(s"{jabber:component:accept}type", [ContentText $ fromString "cancel"])]
[NodeElement $ Element (s"{urn:ietf:params:xml:ns:xmpp-stanzas}feature-not-implemented") [] []]
}
stripOptionalSuffix suffix text =
fromMaybe text $ T.stripSuffix suffix text
-- https://otr.cypherpunks.ca/Protocol-v3-4.0.0.html
stripOtrWhitespaceOnce body =
foldl' (\body' suffix -> stripOptionalSuffix suffix body') body [
s"\x20\x20\x09\x09\x20\x20\x09\x09",
s"\x20\x20\x09\x09\x20\x20\x09\x20",
s"\x20\x09\x20\x09\x20\x20\x09\x20",
s"\x20\x09\x20\x20\x09\x09\x09\x09",
s"\x20\x09\x20\x09\x20\x09\x20\x20"
]
stripOtrWhitespace = stripOtrWhitespaceOnce . stripOtrWhitespaceOnce . stripOtrWhitespaceOnce . stripOtrWhitespaceOnce . stripOtrWhitespaceOnce
mapBody f (m@Message { messagePayloads = payloads }) =
m { messagePayloads =
map (\payload ->
case isNamed (s"{jabber:component:accept}body") payload of
[] -> payload
_ -> payload { elementNodes = [NodeContent $ ContentText $ f (concat (elementText payload))] }
) payloads
}
deleteDirectMessageRoute db userJid = do
DB.del db (DB.byJid userJid ["direct-message-route"])
mcheoJid <- fmap (parseJID =<<) $ DB.get db (DB.byJid userJid ["cheoJid"])
forM_ mcheoJid $ \cheoJid -> do
DB.del db (DB.byJid userJid ["cheoJid"])
DB.srem db (DB.byNode cheoJid ["owners"]) [bareTxt userJid]
unregisterDirectMessageRoute db componentJid userJid route = do
maybeCheoJid <- (parseJID =<<) <$> DB.get db (DB.byJid userJid ["cheoJid"])
forM_ maybeCheoJid $ \cheoJid -> do
DB.del db (DB.byJid userJid ["cheoJid"])
DB.srem db (DB.byNode cheoJid ["owners"]) [bareTxt userJid]
uuid <- (fmap.fmap) (fromString . UUID.toString) UUID.nextUUID
return $ (emptyIQ IQSet) {
iqTo = Just route,
iqFrom = parseJID $ escapeJid (bareTxt userJid) ++ s"@" ++ formatJID componentJid ++ s"/CHEOGRAM%removed",
iqID = uuid,
iqPayload = Just $ Element (s"{jabber:iq:register}query") [] [
NodeElement $ Element (s"{jabber:iq:register}remove") [] []
]
}
toRouteOrFallback db componentJid from smsJid m fallback = do
maybeRoute <- DB.get db (DB.byJid from ["direct-message-route"])
case (maybeRoute, parseJID $ escapeJid (bareTxt from) ++ s"@" ++ formatJID componentJid ++ resourceSuffix) of
(Just route, Just routeFrom) -> do
return [mkStanzaRec $ m {
messageFrom = Just routeFrom,
messageTo = parseJID $ (fromMaybe mempty $ strNode <$> jidNode smsJid) ++ s"@" ++ route
}]
_ -> fallback
where
resourceSuffix = maybe mempty (s"/"++) (strResource <$> jidResource from)
componentMessage db componentJid (m@Message { messageType = MessageError }) _ from smsJid body = do
log "MESSAGE ERROR" m
toRouteOrFallback db componentJid from smsJid m $ do
log "DIRECT FROM GATEWAY" smsJid
return [mkStanzaRec $ m { messageTo = Just smsJid, messageFrom = Just componentJid }]
componentMessage db componentJid m@(Message { messageTo = Just to@JID{ jidNode = Just _ } }) existingRoom _ smsJid _
| Just invite <- getMediatedInvitation m <|> getDirectInvitation m = do
forM_ (invitePassword invite) $ \password ->
DB.set db (DB.byNode to [textToString $ formatJID $ inviteMUC invite, "muc_roomsecret"]) password
existingInvite <- (parseJID =<<) <$> DB.get db (DB.byNode to ["invited"])
nick <- nickFor db componentJid (inviteFrom invite) existingRoom
let txt = mconcat [
fromString "* ",
nick,
fromString " has invited you to a group",
maybe mempty (\t -> fromString ", saying \"" <> t <> fromString "\"") (inviteText invite),
fromString "\nYou can switch to this group by replying with /join"
]
if (existingRoom /= Just (inviteMUC invite) && existingInvite /= Just (inviteMUC invite)) then do
DB.set db (DB.byNode to ["invited"]) (formatJID $ inviteMUC invite)
regJid <- (parseJID =<<) <$> DB.get db (DB.byNode to ["registered"])
fmap (((mkStanzaRec $ mkSMS componentJid smsJid txt):) . concat . toList)
(forM regJid $ \jid -> sendInvite db jid (invite { inviteFrom = to }))
else
return []
componentMessage _ componentJid (m@Message { messageType = MessageGroupChat }) existingRoom from smsJid (Just body) = do
if fmap bareTxt existingRoom == Just (bareTxt from) && (
existingRoom /= Just from ||
not (fromString "CHEOGRAM%" `T.isPrefixOf` fromMaybe mempty (messageID m))) then
return [mkStanzaRec $ mkSMS componentJid smsJid txt]
else do
log "MESSAGE FROM WRONG GROUP" (fmap bareTxt existingRoom, from, m)
return []
where
txt = mconcat [fromString "(", fromMaybe (fromString "nonick") (strResource <$> jidResource from), fromString ") ", body]
componentMessage db componentJid m@(Message { messageTo = Just to }) existingRoom from smsJid (Just body) = do
ack <- case isNamed (fromString "{urn:xmpp:receipts}request") =<< messagePayloads m of
(_:_) ->
routeDiscoOrReply db componentJid from smsJid ("CHEOGRAM%query-then-send-ack%" ++ extra) Nothing
(deliveryReceipt (fromMaybe mempty $ messageID m) to from)
[] -> return []
fmap (++ack) $ toRouteOrFallback db componentJid from smsJid strippedM $
case PCRE.match autolinkRegex (encodeUtf8 body) [] of
Just _ -> do
log "WHISPER URL" m
return [mkStanzaRec $ m {
messageFrom = Just to,
messageTo = Just from,
messageType = MessageError,
messagePayloads = messagePayloads m ++ [
Element (fromString "{jabber:component:accept}error")
[(fromString "{jabber:component:accept}type", [ContentText $ fromString "auth"])]
[NodeElement $ Element (fromString "{urn:ietf:params:xml:ns:xmpp-stanzas}forbidden") [] []]
]
}]
Nothing -> do
nick <- nickFor db componentJid from existingRoom
let txt = mconcat [s"<", nick, s" says> ", strippedBody]
let sms = mkSMS componentJid smsJid txt
let thread = (maybe id (\t f -> f ++ s" " ++ t) (getThread "jabber:component:accept" m)) (bareTxt from)
return [mkStanzaRec $ sms { messagePayloads = (Element (s"{jabber:component:accept}thread") [] [NodeContent $ ContentText thread]) : messagePayloads sms } ]
where
strippedM = mapBody (const strippedBody) m
strippedBody = stripOtrWhitespace body
extra = T.unpack $ escapeJid $ T.pack $ show (fromMaybe mempty (messageID m), maybe mempty strResource $ jidResource from)
componentMessage _ _ m _ _ _ _ = do
log "UNKNOWN MESSAGE" m
return []
handleJoinPartRoom db toRoomPresences toRejoinManager toJoinPartDebouncer componentJid existingRoom from to smsJid payloads join
| join,
[x] <- isNamed (s"{http://jabber.org/protocol/muc#user}x") =<< payloads,
not $ null $ code "110" =<< isNamed (fromString "{http://jabber.org/protocol/muc#user}status") =<< elementChildren x = do
existingInvite <- (parseJID =<<) <$> DB.get db (DB.byNode to ["invited"])
when (existingInvite == parseJID bareMUC) $
DB.del db (DB.byNode to ["invited"])
DB.set db (DB.byNode to ["joined"]) (formatJID from)
DB.sadd db (DB.byNode to ["bookmarks"]) [bareMUC]
presences <- syncCall toRoomPresences $ GetRoomPresences to from
atomically $ writeTChan toRoomPresences $ RecordSelfJoin to from (Just to)
atomically $ writeTChan toRejoinManager $ Joined from
case presences of
[] -> do -- No one in the room, so we "created"
uuid <- fromMaybe "UUIDFAIL" <$> (fmap.fmap) (fromString . UUID.toString) UUID.nextUUID
let fullid = if (resourceFrom `elem` map fst presences) then uuid else "CHEOGRAMCREATE%" <> uuid
return [mkStanzaRec $ (emptyIQ IQGet) {
iqTo = Just room,
iqFrom = Just to,
iqID = Just $ fromString fullid,
iqPayload = Just $ Element (fromString "{http://jabber.org/protocol/muc#owner}query") [] []
}]
(_:_) | isNothing (lookup resourceFrom presences) -> do
fmap ((mkStanzaRec $ mkSMS componentJid smsJid $ mconcat [
s"* You have joined ", bareMUC,
s" as ", resourceFrom,
s" along with\n",
intercalate (s", ") (filter (/= resourceFrom) $ map fst presences)
]):)
(queryDisco room to)
_ -> do
log "JOINED" (to, from, "FALSE PRESENCE")
queryDisco room to
| not join,
[x] <- isNamed (fromString "{http://jabber.org/protocol/muc#user}x") =<< payloads,
(_:_) <- code "303" =<< isNamed (fromString "{http://jabber.org/protocol/muc#user}status") =<< elementChildren x = do
let mnick = attributeText (fromString "nick") =<<
listToMaybe (isNamed (fromString "{http://jabber.org/protocol/muc#user}item") =<< elementChildren x)
toList <$> forM mnick (\nick -> do
atomically $ writeTChan toRoomPresences $ RecordNickChanged to from nick
return $ mkStanzaRec $ mkSMS componentJid smsJid $ mconcat [
fromString "* ",
resourceFrom,
fromString " has changed their nick to ",
nick
]
)
| not join,
[x] <- isNamed (fromString "{http://jabber.org/protocol/muc#user}x") =<< payloads,
(_:_) <- code "332" =<< isNamed (fromString "{http://jabber.org/protocol/muc#user}status") =<< elementChildren x = do
log "SERVER RESTART, clear join status" (to, from)
void $ atomically (writeTChan toRejoinManager $ JoinError from)
return []
| not join && existingRoom == Just from = do
DB.del db (DB.byNode to ["joined"])
atomically $ writeTChan toRoomPresences $ RecordPart to from
atomically $ writeTChan toRoomPresences $ Clear to from
return [mkStanzaRec $ mkSMS componentJid smsJid (fromString "* You have left " <> bareMUC)]
| fmap bareTxt existingRoom == Just bareMUC && join = do
atomically $ writeTChan toJoinPartDebouncer $ DebounceJoin to from (participantJid payloads)
return []
| fmap bareTxt existingRoom == Just bareMUC && not join = do
atomically $ writeTChan toJoinPartDebouncer $ DebouncePart to from
return []
| join,
(_:_) <- isNamed (fromString "{http://jabber.org/protocol/muc#user}x") =<< payloads = do
log "UNKNOWN JOIN" (existingRoom, from, to, payloads, join)
atomically $ writeTChan toRoomPresences $ RecordJoin to from (participantJid payloads)
return []
| (_:_) <- isNamed (fromString "{http://jabber.org/protocol/muc#user}x") =<< payloads = do
log "UNKNOWN NOT JOIN" (existingRoom, from, to, payloads, join)
atomically $ writeTChan toRoomPresences $ RecordPart to from
return []
| otherwise =
-- This is just presence. It's not marked as MUC or from the room this user is in
return []
where
resourceFrom = fromMaybe mempty (strResource <$> jidResource from)
Just room = parseJID bareMUC
bareMUC = bareTxt from
verificationResponse =
Element (fromString "{jabber:iq:register}query") []
[
NodeElement $ Element (fromString "{jabber:iq:register}instructions") [] [
NodeContent $ ContentText $ fromString "Enter the verification code CheoGram texted you."
],
NodeElement $ Element (fromString "{jabber:iq:register}password") [] [],
NodeElement $ Element (fromString "{jabber:x:data}x") [
(fromString "{jabber:x:data}type", [ContentText $ fromString "form"])
] [
NodeElement $ Element (fromString "{jabber:x:data}title") [] [NodeContent $ ContentText $ fromString "Verify Phone Number"],
NodeElement $ Element (fromString "{jabber:x:data}instructions") [] [
NodeContent $ ContentText $ fromString "Enter the verification code CheoGram texted you."
],
NodeElement $ Element (fromString "{jabber:x:data}field") [
(fromString "{jabber:x:data}type", [ContentText $ fromString "hidden"]),
(fromString "{jabber:x:data}var", [ContentText $ fromString "FORM_TYPE"])
] [
NodeElement $ Element (fromString "{jabber:x:data}value") [] [NodeContent $ ContentText $ fromString "jabber:iq:register"]
],
NodeElement $ Element (fromString "{jabber:x:data}field") [
(fromString "{jabber:x:data}type", [ContentText $ fromString "text-single"]),
(fromString "{jabber:x:data}var", [ContentText $ fromString "password"]),
(fromString "{jabber:x:data}label", [ContentText $ fromString "Verification code"])
] []
]
]
data RegistrationCode = RegistrationCode { regCode :: Int, cheoJid :: Text, expires :: UTCTime } deriving (Show, Read)
registerVerification db componentJid to iq = do
code <- getStdRandom (randomR (123457::Int,987653))
time <- getCurrentTime
forM_ (iqFrom iq) $ \from ->
DB.set db (DB.byJid from ["registration_code"]) $ tshow $ RegistrationCode code (formatJID to) time
return [
mkStanzaRec $ mkSMS componentJid to $ fromString ("Enter this verification code to complete registration: " <> show code),
mkStanzaRec $ iq {
iqTo = iqFrom iq,
iqFrom = iqTo iq,
iqType = IQResult,
iqPayload = Just verificationResponse
}
]
handleVerificationCode db componentJid password iq from = do
time <- getCurrentTime
codeAndTime <- fmap (readZ . textToString =<<) $ DB.get db (DB.byJid from ["registration_code"])
case codeAndTime of
Just (RegistrationCode { regCode = code, cheoJid = cheoJidT })
| fmap expires codeAndTime > Just ((-300) `addUTCTime` time) ->
case (show code == T.unpack password, iqTo iq, parseJID cheoJidT) of
(True, Just to, Just cheoJid) -> do
bookmarks <- DB.smembers db (DB.byNode cheoJid ["bookmarks"])
invites <- fmap concat $ forM (mapMaybe parseJID bookmarks) $ \bookmark ->
sendInvite db from (Invite bookmark cheoJid (Just $ fromString "Cheogram registration") Nothing)
let Just tel = strNode <$> jidNode cheoJid
DB.set db (DB.byJid from ["registered"]) tel
DB.set db (DB.byNode cheoJid ["registered"]) (bareTxt from)
stuff <- runMaybeT $ do
-- If there is a nick that doesn't end in _sms, add _sms
nick <- MaybeT $ DB.get db (DB.byNode cheoJid ["nick"])
let nick' = (fromMaybe nick $ T.stripSuffix (s"_sms") nick) <> s"_sms"
liftIO $ DB.set db (DB.byNode cheoJid ["nick"]) nick'
room <- MaybeT $ (parseJID =<<) <$> DB.get db (DB.byNode cheoJid ["joined"])
toJoin <- hoistMaybe $ parseJID (bareTxt room <> fromString "/" <> nick')
liftIO $ joinRoom db cheoJid toJoin
return ((mkStanzaRec $ iq {
iqTo = iqFrom iq,
iqFrom = iqTo iq,
iqType = IQResult,
iqPayload = Just $ Element (fromString "{jabber:iq:register}query") [] []
}):invites)
_ ->
return [mkStanzaRec $ iq {
iqTo = iqFrom iq,
iqFrom = iqTo iq,
iqType = IQError,
iqPayload = Just $ Element (fromString "{jabber:component:accept}error")
[(fromString "{jabber:component:accept}type", [ContentText $ fromString "auth"])]
[NodeElement $ Element (fromString "{urn:ietf:params:xml:ns:xmpp-stanzas}not-authorized") [] []]
}]
_ -> do
DB.del db (DB.byJid from ["registration_code"])
return []
handleRegister db componentJid iq@(IQ { iqType = IQGet, iqFrom = Just from }) _ = do
time <- getCurrentTime
codeAndTime <- fmap (readZ . textToString =<<) $ DB.get db (DB.byJid from ["registration_code"])
if fmap expires codeAndTime > Just ((-300) `addUTCTime` time) then
return [mkStanzaRec $ iq {
iqTo = iqFrom iq,
iqFrom = iqTo iq,
iqType = IQResult,
iqPayload = Just verificationResponse
}]
else
return [mkStanzaRec $ iq {
iqTo = iqFrom iq,
iqFrom = iqTo iq,
iqType = IQResult,
iqPayload = Just $ Element (fromString "{jabber:iq:register}query") []
[
NodeElement $ Element (fromString "{jabber:iq:register}instructions") [] [
NodeContent $ ContentText $ fromString "CheoGram can verify your phone number and add you to the private groups you previously texted."
],
NodeElement $ Element (fromString "{jabber:iq:register}phone") [] [],
NodeElement $ Element (fromString "{jabber:x:data}x") [
(fromString "{jabber:x:data}type", [ContentText $ fromString "form"])
] [
NodeElement $ Element (fromString "{jabber:x:data}title") [] [NodeContent $ ContentText $ fromString "Associate Phone Number"],
NodeElement $ Element (fromString "{jabber:x:data}instructions") [] [
NodeContent $ ContentText $ fromString "CheoGram can verify your phone number and add you to the private groups you previously texted."
],
NodeElement $ Element (fromString "{jabber:x:data}field") [
(fromString "{jabber:x:data}type", [ContentText $ fromString "hidden"]),
(fromString "{jabber:x:data}var", [ContentText $ fromString "FORM_TYPE"])
] [
NodeElement $ Element (fromString "{jabber:x:data}value") [] [NodeContent $ ContentText $ fromString "jabber:iq:register"]
],
NodeElement $ Element (fromString "{jabber:x:data}field") [
(fromString "{jabber:x:data}type", [ContentText $ fromString "text-single"]),
(fromString "{jabber:x:data}var", [ContentText $ fromString "phone"]),
(fromString "{jabber:x:data}label", [ContentText $ fromString "Phone number"])
] []
]
]
}]
handleRegister db componentJid iq@(IQ { iqType = IQSet }) query
| [form] <- isNamed (fromString "{jabber:x:data}x") =<< elementChildren query,
Just to <- (`telToJid` formatJID componentJid) =<< getFormField form (fromString "phone") = do
registerVerification db componentJid to iq
handleRegister db componentJid iq@(IQ { iqType = IQSet }) query
| [phoneEl] <- isNamed (fromString "{jabber:iq:register}phone") =<< elementChildren query,
Just to <- (`telToJid` formatJID componentJid) $ mconcat (elementText phoneEl) = do
registerVerification db componentJid to iq
handleRegister db componentJid iq@(IQ { iqType = IQSet, iqFrom = Just from }) query
| [form] <- isNamed (fromString "{jabber:x:data}x") =<< elementChildren query,
Just password <- getFormField form (fromString "password") = do
handleVerificationCode db componentJid password iq from
handleRegister db componentJid iq@(IQ { iqType = IQSet, iqPayload = Just payload, iqFrom = Just from }) query
| [passwordEl] <- isNamed (fromString "{jabber:iq:register}password") =<< elementChildren query = do
handleVerificationCode db componentJid (mconcat $ elementText passwordEl) iq from
handleRegister db componentJid iq@(IQ { iqTo = Just to, iqFrom = Just from, iqType = IQSet }) query
| [_] <- isNamed (fromString "{jabber:iq:register}remove") =<< elementChildren query = do
tel <- fromMaybe mempty <$> DB.get db (DB.byJid from ["registered"])
forM_ (telToJid tel (formatJID componentJid)) $ \cheoJid ->
DB.del db (DB.byNode cheoJid ["registered"])
DB.del db (DB.byJid from ["registered"])
return [mkStanzaRec $
iqReply
(Just $ Element (fromString "{jabber:iq:register}query") [] [])
iq
]
handleRegister _ _ iq@(IQ { iqType = typ }) _
| typ `elem` [IQGet, IQSet] = do
log "HANDLEREGISTER return error" iq
return [mkStanzaRec $ iq {
iqTo = iqFrom iq,
iqFrom = iqTo iq,
iqType = IQError,
iqPayload = Just $ Element (fromString "{jabber:component:accept}error")
[(fromString "{jabber:component:accept}type", [ContentText $ fromString "cancel"])]
[NodeElement $ Element (fromString "{urn:ietf:params:xml:ns:xmpp-stanzas}feature-not-implemented") [] []]
}]
handleRegister _ _ iq _ = do
log "HANDLEREGISTER UNKNOWN" iq
return []
data ComponentContext = ComponentContext {
db :: DB.DB,
pushStatsd :: [StatsD.Stat] -> IO (),
smsJid :: Maybe JID,
registrationJids :: [JID],
adhocBotMessage :: Message -> STM (),
ctxCacheOOB :: Message -> UIO Message,
toRoomPresences :: TChan RoomPresences,
toRejoinManager :: TChan RejoinManagerCommand,
toJoinPartDebouncer :: TChan JoinPartDebounce,
processDirectMessageRouteConfig :: IQ -> IO (Maybe IQ),
componentJid :: JID,
sendIQ :: IQ -> UIO (STM (Maybe IQ)),
maybeAvatar :: Maybe Avatar
}
componentStanza :: ComponentContext -> ReceivedStanza -> IO [StanzaRec]
componentStanza (ComponentContext { adhocBotMessage, ctxCacheOOB, componentJid }) (ReceivedMessage (m@Message { messageTo = Just (JID { jidNode = Nothing }) }))
| Just reply <- groupTextPorcelein (formatJID componentJid) m = do
-- TODO: only when from direct message route
-- TODO: only if target does not understand stanza addressing
reply' <- UIO.lift $ ctxCacheOOB reply
return [mkStanzaRec reply']
| MessageError == messageType m = return []
| Just _ <- getBody "jabber:component:accept" m = do
hasLocked "adhocBotMessage" $ atomicUIO $ adhocBotMessage m
return []
| otherwise = log "WEIRD BODYLESS MESSAGE DIRECT TO COMPONENT" m >> return []
componentStanza (ComponentContext { db, componentJid, sendIQ, smsJid = Just smsJid }) (ReceivedMessage (m@Message { messageTo = Just to, messageFrom = Just from}))
| [propose] <- isNamed (fromString "{urn:xmpp:jingle-message:0}propose") =<< messagePayloads m = do
let sid = fromMaybe mempty $ XML.attributeText (s"id") propose
telFeatures <- getTelFeatures db componentJid sendIQ from
stanzas <- routeDiscoOrReply db componentJid from smsJid "CHEOGRAM%query-then-send-presence" Nothing $ telAvailable to from telFeatures
return $ (mkStanzaRec $ (XMPP.emptyMessage XMPP.MessageNormal) {
XMPP.messageID = Just $ s"proceed%" ++ sid,
XMPP.messageTo = Just from,
XMPP.messageFrom = XMPP.parseJID $ bareTxt to ++ s"/tel",
XMPP.messagePayloads = [
XML.Element (s"{urn:xmpp:jingle-message:0}proceed")
[(s"id", [XML.ContentText sid])] []
]
}) : stanzas
componentStanza _ (ReceivedMessage (m@Message { messageTo = Just to, messageFrom = Just from}))
| [x] <- isNamed (fromString "{http://jabber.org/protocol/muc#user}x") =<< messagePayloads m,
not $ null $ code "104" =<< isNamed (fromString "{http://jabber.org/protocol/muc#user}status") =<< elementChildren x = do
queryDisco from to
componentStanza (ComponentContext { db, smsJid = (Just smsJid), componentJid, ctxCacheOOB }) (ReceivedMessage (m@Message { messageTo = Just to@(JID { jidNode = Just _ }), messageFrom = Just from})) = do
existingRoom <- (parseJID =<<) <$> DB.get db (DB.byNode to ["joined"])
m' <- UIO.lift $ ctxCacheOOB m
componentMessage db componentJid m' existingRoom from smsJid $
getBody "jabber:component:accept" m'
componentStanza (ComponentContext { smsJid = (Just smsJid), toRejoinManager, componentJid }) (ReceivedPresence p@(Presence { presenceType = PresenceError, presenceFrom = Just from, presenceTo = Just to, presenceID = Just id }))
| fromString "CHEOGRAMREJOIN%" `T.isPrefixOf` id = do
log "FAILED TO REJOIN, clear join state" p
void $ atomically (writeTChan toRejoinManager $ JoinError from)
return []
| fromString "CHEOGRAMJOIN%" `T.isPrefixOf` id = do
log "FAILED TO JOIN" p
let errorText = maybe mempty (mconcat . (fromString "\n":) . elementText) $ listToMaybe $
isNamed (fromString "{urn:ietf:params:xml:ns:xmpp-stanzas}text") =<<
elementChildren =<< isNamed (fromString "{jabber:component:accept}error") =<< presencePayloads p
return [mkStanzaRec $ mkSMS componentJid smsJid (fromString "* Failed to join " <> bareTxt from <> errorText)]
| otherwise = return [] -- presence error from a non-MUC, just ignore
componentStanza (ComponentContext { db, smsJid = (Just smsJid), toRoomPresences, toRejoinManager, toJoinPartDebouncer, componentJid }) (ReceivedPresence (Presence {
presenceType = typ,
presenceFrom = Just from,
presenceTo = Just to@(JID { jidNode = Just _ }),
presencePayloads = payloads
})) | typ `elem` [PresenceAvailable, PresenceUnavailable] = do
existingRoom <- (parseJID =<<) <$> DB.get db (DB.byNode to ["joined"])
hasLocked "handleJoinPartRoom" $ handleJoinPartRoom db toRoomPresences toRejoinManager toJoinPartDebouncer componentJid existingRoom from to smsJid payloads (typ == PresenceAvailable)
componentStanza (ComponentContext { db, componentJid, sendIQ, maybeAvatar }) (ReceivedPresence (Presence { presenceType = PresenceSubscribe, presenceFrom = Just from, presenceTo = Just to@JID { jidNode = Nothing } })) = do
avail <- cheogramAvailable db componentJid sendIQ to from
return $ [
mkStanzaRec $ (emptyPresence PresenceSubscribed) {
presenceTo = Just from,
presenceFrom = Just to
},
mkStanzaRec $ (emptyPresence PresenceSubscribe) {
presenceTo = Just from,
presenceFrom = Just to
},
mkStanzaRec avail
] ++ map (mkStanzaRec . (\payload -> ((emptyMessage MessageHeadline) {
messageTo = Just from,
messageFrom = Just to,
messagePayloads = [payload]
})) . avatarMetadata) (justZ maybeAvatar)
componentStanza (ComponentContext { db, smsJid = (Just smsJid), componentJid }) (ReceivedPresence (Presence { presenceType = PresenceSubscribe, presenceFrom = Just from, presenceTo = Just to@JID { jidNode = Just _ } })) = do
stanzas <- routeDiscoOrReply db componentJid from smsJid "CHEOGRAM%query-then-send-presence" Nothing $ telAvailable to from []
return $ [
mkStanzaRec $ (emptyPresence PresenceSubscribed) {
presenceTo = Just from,
presenceFrom = Just to
},
mkStanzaRec $ (emptyPresence PresenceSubscribe) {
presenceTo = Just from,
presenceFrom = Just to
}
] ++ stanzas
componentStanza (ComponentContext { smsJid = Nothing }) (ReceivedPresence (Presence { presenceType = PresenceSubscribe, presenceFrom = Just from, presenceTo = Just to@JID { jidNode = Just node } }))
| Just _ <- mapM localpartToURI (T.split (==',') $ strNode node) = do
return $ [
mkStanzaRec $ (emptyPresence PresenceSubscribed) {
presenceTo = Just from,
presenceFrom = Just to
},
mkStanzaRec $ (emptyPresence PresenceSubscribe) {
presenceTo = Just from,
presenceFrom = Just to
},
mkStanzaRec $ telAvailable to from []
]
componentStanza (ComponentContext { db, componentJid, sendIQ, maybeAvatar }) (ReceivedPresence (Presence { presenceType = PresenceProbe, presenceFrom = Just from, presenceTo = Just to@JID { jidNode = Nothing } })) = do
avail <- cheogramAvailable db componentJid sendIQ to from
return $
[mkStanzaRec avail] ++
map (mkStanzaRec . (\payload -> (emptyMessage (MessageHeadline)) {
messageTo = Just from,
messageFrom = Just to,
messagePayloads = [payload]
}) . avatarMetadata) (justZ maybeAvatar)
componentStanza (ComponentContext { db, smsJid = (Just smsJid), componentJid }) (ReceivedPresence (Presence { presenceType = PresenceProbe, presenceFrom = Just from, presenceTo = Just to@JID { jidNode = Just _ } })) = do
routeDiscoOrReply db componentJid from smsJid "CHEOGRAM%query-then-send-presence" Nothing $ telAvailable to from []
componentStanza _ (ReceivedPresence (Presence { presenceType = PresenceProbe, presenceFrom = Just from, presenceTo = Just to@JID { jidNode = Just node } }))
| Just multipleTo <- mapM localpartToURI (T.split (==',') $ strNode node) = do
return $ [mkStanzaRec $ telAvailable to from []]
componentStanza (ComponentContext { maybeAvatar = Just (Avatar hash _ b64) }) (ReceivedIQ (iq@IQ { iqType = IQGet, iqTo = Just to@JID { jidNode = Nothing }, iqFrom = Just from, iqID = Just id, iqPayload = Just p }))
| [items] <- isNamed (s"{http://jabber.org/protocol/pubsub}items") =<<
elementChildren =<<
isNamed (s"{http://jabber.org/protocol/pubsub}pubsub") p,
attributeText (s"node") items == Just (s"urn:xmpp:avatar:data"),
item <- headZ $ isNamed (s"{http://jabber.org/protocol/pubsub}item") =<<
elementChildren items,
isNothing item || (attributeText (s"id") =<< item) == Just hash =
return [mkStanzaRec $ iqReply (Just $
XML.Element (s"{http://jabber.org/protocol/pubsub}pubsub") [] [
XML.NodeElement $ XML.Element (s"{http://jabber.org/protocol/pubsub}items")
[(s"node", [XML.ContentText $ s"urn:xmpp:avatar:data"])] [
XML.NodeElement $ XML.Element (s"{http://jabber.org/protocol/pubsub}item")
[(s"id", [XML.ContentText hash])] [
XML.NodeElement $ mkElement (s"{urn:xmpp:avatar:data}data") b64
]
]
]
) iq]
componentStanza (ComponentContext { registrationJids, processDirectMessageRouteConfig, componentJid }) (ReceivedIQ (IQ { iqType = IQSet, iqTo = Just to, iqFrom = Just from, iqID = Just id, iqPayload = Just p }))
| jidNode to == Nothing,
[iqEl] <- isNamed (s"{jabber:client}iq") =<< elementChildren =<< isNamed (s"{urn:xmpp:forward:0}forwarded") p,
[payload] <- isNamed (s"{http://jabber.org/protocol/commands}command") =<< elementChildren iqEl,
Just asFrom <- parseJID =<< attributeText (s"from") iqEl,
bareTxt from `elem` map bareTxt registrationJids = do
replyIQ <- processDirectMessageRouteConfig $ (emptyIQ IQSet) {
iqID = Just id,
iqTo = Just to,
iqFrom = Just asFrom,
iqPayload = Just payload
}
fmap (fromMaybe []) $ forM replyIQ $ \replyIQ -> do
--(\f -> maybe (return []) f replyIQ) $ \replyIQ -> do
let fromLocalpart = maybe mempty (\localpart -> localpart++s"@") (fmap strNode . jidNode =<< iqFrom replyIQ)
let subscribe = if attributeText (s"action") payload /= Just (s"complete") then [] else [
mkStanzaRec $ (emptyPresence PresenceSubscribe) {
presenceTo = Just asFrom,
presenceFrom = Just componentJid,
presencePayloads = [
Element (s"{jabber:component:accept}status") [] [
NodeContent $ ContentText $ s"Add this contact and then you can SMS by sending messages to +1<phone-number>@" ++ formatJID componentJid ++ s" Jabber IDs."
]
]
}
]
return $ subscribe ++ [mkStanzaRec $ replyIQ {
iqTo = if iqTo replyIQ == Just asFrom then Just from else iqTo replyIQ,
iqID = if iqType replyIQ == IQResult then iqID replyIQ else Just $ fromString $ show (formatJID from, formatJID asFrom, iqID replyIQ),
iqFrom = parseJID (fromLocalpart ++ formatJID componentJid ++ s"/CHEOGRAM%" ++ ConfigureDirectMessageRoute.nodeName)
}]
componentStanza (ComponentContext { processDirectMessageRouteConfig, componentJid }) (ReceivedIQ iq@(IQ { iqTo = Just to }))
| fmap strResource (jidResource to) == Just (s"CHEOGRAM%" ++ ConfigureDirectMessageRoute.nodeName),
Just (fwdBy, onBehalf, iqId) <- readZ . T.unpack =<< iqID iq = do
replyIQ <- processDirectMessageRouteConfig (iq { iqID = iqId })
fmap (fromMaybe []) $ forM replyIQ $ \replyIQ -> do
let fromLocalpart = maybe mempty (\localpart -> localpart++s"@") (fmap strNode . jidNode =<< iqFrom replyIQ)
return [mkStanzaRec $ replyIQ {
iqTo = if fmap bareTxt (iqTo replyIQ) == Just onBehalf then parseJID fwdBy else iqTo replyIQ,
iqID = if iqType replyIQ == IQResult then iqID replyIQ else Just $ fromString $ show (fwdBy, onBehalf, iqID replyIQ),
iqFrom = parseJID (fromLocalpart ++ formatJID componentJid ++ s"/CHEOGRAM%" ++ ConfigureDirectMessageRoute.nodeName)
}]
componentStanza (ComponentContext { processDirectMessageRouteConfig, componentJid }) (ReceivedIQ iq@(IQ { iqTo = Just to, iqPayload = payload }))
| (jidNode to == Nothing && fmap elementName payload == Just (s"{http://jabber.org/protocol/commands}command") && (attributeText (s"node") =<< payload) == Just ConfigureDirectMessageRoute.nodeName) ||
fmap strResource (jidResource to) == Just (s"CHEOGRAM%" ++ ConfigureDirectMessageRoute.nodeName) = do
replyIQ <- processDirectMessageRouteConfig iq
fmap (fromMaybe []) $ forM replyIQ $ \replyIQ -> do
let subscribe = if (attributeText (s"status") =<< iqPayload replyIQ) /= Just (s"completed") then [] else [
mkStanzaRec $ (emptyPresence PresenceSubscribe) {
presenceTo = iqFrom iq,
presenceFrom = Just componentJid,
presencePayloads = [
Element (s"{jabber:component:accept}status") [] [
NodeContent $ ContentText $ s"Add this contact and then you can SMS by sending messages to +1<phone-number>@" ++ formatJID componentJid ++ s" Jabber IDs."
]
]
}
]
let fromLocalpart = maybe mempty (\localpart -> localpart++s"@") (fmap strNode . jidNode =<< iqFrom replyIQ)
return $ subscribe ++ [mkStanzaRec $ replyIQ {
iqFrom = parseJID (fromLocalpart ++ formatJID componentJid ++ s"/CHEOGRAM%" ++ ConfigureDirectMessageRoute.nodeName)
}]
componentStanza (ComponentContext { db, componentJid }) (ReceivedIQ iq@(IQ { iqTo = Just (JID { jidNode = Nothing }), iqPayload = payload, iqFrom = Just from }))
| fmap elementName payload == Just (s"{http://jabber.org/protocol/commands}command") && (attributeText (s"node") =<< payload) == Just JidSwitch.nodeName =
let setJidSwitch newJid = do
let from' = maybeUnescape componentJid from
Just route <- (XMPP.parseJID <=< id) <$> DB.get db (DB.byJid from' ["direct-message-route"])
let key = DB.byJid newJid ["jidSwitch"]
DB.hset db key $ JidSwitch.toAssoc from' route
-- I figure 24 hours is a wide enough window to accept a JID switch
DB.expire db key $ 60 * 60 * 24
return (from', newJid, route)
in
map mkStanzaRec <$> JidSwitch.receiveIq componentJid setJidSwitch iq
componentStanza (ComponentContext { db, componentJid }) (ReceivedIQ iq@(IQ { iqTo = Just to, iqPayload = Just payload, iqFrom = Just from }))
| jidNode to == Nothing,
elementName payload == s"{http://jabber.org/protocol/commands}command",
attributeText (s"node") payload == Just (s"sip-proxy-set"),
[form] <- isNamed (fromString "{jabber:x:data}x") =<< elementChildren payload,
Just proxy <- getFormField form (s"sip-proxy") = do
if T.null proxy then
DB.del db (DB.byJid from ["sip-proxy"])
else
DB.set db (DB.byJid from ["sip-proxy"]) proxy
return [mkStanzaRec $ iqReply Nothing iq]
componentStanza (ComponentContext { db, componentJid }) (ReceivedIQ iq@(IQ { iqTo = Just to, iqPayload = Just payload, iqFrom = Just from }))
| jidNode to == Nothing,
jidNode from == Nothing,
elementName payload == s"{http://jabber.org/protocol/commands}command",
attributeText (s"node") payload == Just (s"push-register"),
[form] <- isNamed (fromString "{jabber:x:data}x") =<< elementChildren payload,
Just pushRegisterTo <- XMPP.parseJID =<< getFormField form (s"to") = do
DB.set db (DB.byJid pushRegisterTo ["possible-route"]) (XMPP.formatJID from)
return [
mkStanzaRec $ iqReply (
Just $ Element (s"{http://jabber.org/protocol/commands}command")
[
(s"{http://jabber.org/protocol/commands}node", [ContentText $ s"push-register"]),
(s"{http://jabber.org/protocol/commands}sessionid", [ContentText $ s"all-done"]),
(s"{http://jabber.org/protocol/commands}status", [ContentText $ s"completed"])
]
[
NodeElement $ Element (fromString "{jabber:x:data}x") [
(fromString "{jabber:x:data}type", [ContentText $ s"result"])
] [
NodeElement $ Element (fromString "{jabber:x:data}field") [
(fromString "{jabber:x:data}type", [ContentText $ s"jid-single"]),
(fromString "{jabber:x:data}var", [ContentText $ s"from"])
] [
NodeElement $ Element (fromString "{jabber:x:data}value") [] [NodeContent $ ContentText $ escapeJid (bareTxt pushRegisterTo) ++ s"@" ++ formatJID componentJid]
]
]
]
) iq,