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
|
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeFamilies #-}
module XMPPTypes
( module XMPPTypes
, module SocketLike
) where
import Network.Socket
( Family(..)
, getAddrInfo
, addrCanonName
, addrAddress
, defaultHints
, AddrInfo(..)
, AddrInfoFlag(..)
)
import Network.BSD
( getHostName
, hostName
, hostAliases
)
import Control.Concurrent.STM (TChan)
import qualified Data.ByteString.Char8 as S
( ByteString
, pack
)
import Data.ByteString.Lazy.Char8 as L
( ByteString
, unpack
, pack
, splitWith
, uncons
, takeWhile
, fromChunks
)
import Text.Show.ByteString as L
import Data.Binary.Builder as B
import Data.Binary.Put
import Control.DeepSeq
import ByteStringOperators
import SocketLike
import GetHostByAddr
import Data.Maybe (listToMaybe)
class JabberClientSession session where
data XMPPClass session
newSession :: SocketLike sock => XMPPClass session -> sock -> IO session
setResource :: session -> ByteString -> IO ()
getJID :: session -> IO JID
closeSession :: session -> IO ()
subscribe :: session -> Maybe JID -> IO (TChan Presence)
subscribeToRoster :: session -> IO (TChan RosterEvent)
forCachedPresence :: session -> (Presence -> IO ()) -> IO ()
sendPending :: session -> IO ()
getMyBuddies :: session -> IO [ByteString]
getMySubscribers :: session -> IO [ByteString]
getMyOthers :: session -> IO [ByteString]
getMyPending :: session -> IO [ByteString]
getMySolicited :: session -> IO [ByteString]
addSolicited :: session -> ByteString -> JID -> IO ()
isSubscribed :: session -> ByteString -> IO Bool
isBuddy :: session -> ByteString -> IO Bool
approveSubscriber :: session -> ByteString -> IO ()
rejectSubscriber :: session -> ByteString -> IO ()
class JabberPeerSession session where
data XMPPPeerClass session
newPeerSession :: SocketLike sock => XMPPPeerClass session -> sock -> IO session
closePeerSession :: session -> IO ()
peerAddress :: session -> Peer
userStatus :: session -> ByteString -> IO [Presence]
announcePresence :: session -> Presence -> IO ()
peerSessionFactory :: session -> XMPPPeerClass session
sendPeerMessage :: session -> OutBoundMessage -> IO ()
getBuddies :: XMPPPeerClass session -> ByteString -> IO [ByteString]
getSubscribers :: XMPPPeerClass session -> ByteString -> IO [ByteString]
processApproval :: session -> ByteString -> JID -> IO ()
processRejection :: session -> ByteString -> JID -> IO ()
processRequest :: session -> ByteString -> JID -> IO ()
-- | Jabber ID (JID) datatype
data JID = JID { name :: Maybe ByteString
, peer :: Peer
, resource :: Maybe ByteString
}
deriving (Eq,Ord)
data JabberShow = Offline
| Away
| Available
deriving (Prelude.Show,Enum,Ord,Eq,Read)
data Presence = Presence JID JabberShow
deriving Prelude.Show
data RosterEvent = RequestedSubscription
{- user: -} ByteString
{- contact: -} ByteString
| NewBuddy
{- user: -} ByteString
{- contact: -} ByteString
| RemovedBuddy
{- user: -} ByteString
{- contact: -} ByteString
| PendingSubscriber
{- user: -} ByteString
{- contact: -} ByteString
| NewSubscriber
{- user: -} ByteString
{- contact: -} ByteString
| RejectSubscriber
{- user: -} ByteString
{- contact: -} ByteString
deriving Prelude.Show
data Peer = LocalHost | RemotePeer SockAddr
deriving (Eq,Prelude.Show)
instance Ord Peer where
LocalHost <= _
= True
RemotePeer (SockAddrUnix a) <= RemotePeer (SockAddrUnix b)
= a <= b
RemotePeer (SockAddrUnix _) <= _
= True
RemotePeer (SockAddrInet aport a) <= RemotePeer (SockAddrInet bport b)
= (a,aport) <= (b,bport)
RemotePeer (SockAddrInet aport a) <= _
= True
RemotePeer (SockAddrInet6 aport aflow a ascope) <= RemotePeer (SockAddrInet6 bport bflow b bscope)
= (a,aport,ascope,aflow) <= (b,bport,bscope,bflow)
a <= b = False
instance L.Show JID where
showp (JID n s r ) = putBuilder . B.fromLazyByteString $ n <$++> "@" <?++> showPeer s <++?> "/" <++$> r
instance Prelude.Show JID where
show jid = L.unpack $ L.show jid
instance NFData JID where
rnf v@(JID n s r) = n `seq` s `seq` r `seq` ()
jid user host rsrc = JID (Just user) host (Just rsrc)
showPeer :: Peer -> ByteString
showPeer LocalHost = "localhost"
showPeer (RemotePeer addr@(SockAddrInet _ _)) = pack $ stripColon (Prelude.show addr)
where stripColon s = pre where (pre,port) = break (==':') s
showPeer (RemotePeer addr@(SockAddrInet6 _ _ _ _)) = pack $ stripColon (Prelude.show addr)
where stripColon s = if null bracket then pre else pre ++ "]"
where
(pre,bracket) = break (==']') s
is_remote (RemotePeer _) = True
is_remote _ = False
discardPort (RemotePeer addr) = RemotePeer (withoutPort addr)
discardPort x = x
parseHostNameJID :: ByteString -> IO JID
parseHostNameJID jid = do
let (name,peer_string,rsc) = splitJID jid
hints = Just $ defaultHints { addrFlags = [ AI_CANONNAME ] }
peer <- do
if peer_string=="localhost"
then return LocalHost
else do
-- putStrLn $ "getAddrInfo 3 " ++ Prelude.show ( Just (unpack peer_string))
info <- getAddrInfo hints (Just (unpack peer_string)) Nothing -- (Just "xmpp-server")
let info0 = head info
cname = addrCanonName info0
if cname==Just "localhost"
then return LocalHost
else do
self <- getHostName
return $ if Just self==cname
then LocalHost
else RemotePeer (addrAddress info0)
return $ JID name peer rsc
splitJID :: ByteString -> (Maybe ByteString,ByteString,Maybe ByteString)
splitJID bjid =
let xs = L.splitWith (=='@') bjid
ys = L.splitWith (=='/') (last xs)
server = head ys
name
= case xs of
(n:s:_) -> Just n
(s:_) -> Nothing
rsrc = case ys of
(s:_:_) -> Just $ last ys
_ -> Nothing
in (name,server,rsrc)
strip_brackets s =
case L.uncons s of
Just ('[',t) -> L.takeWhile (/=']') t
_ -> s
parseAddressJID :: ByteString -> IO JID
parseAddressJID jid = do
let (name,peer_string,rsc) = splitJID jid
hints = Just $ defaultHints { addrFlags = [ {- AI_NUMERICHOST, -} AI_CANONNAME ] }
peer_string' = unpack . strip_brackets $ peer_string
peer <- do
-- putStrLn $ "getAddrInfo 2 " ++ Prelude.show ( Just (unpack peer_string))
info <- getAddrInfo hints (Just peer_string') Nothing -- (Just "xmpp-server")
let info0 = head info
return . RemotePeer . addrAddress $ info0
return $ JID name peer rsc
peerAddr :: Peer -> SockAddr
peerAddr (RemotePeer addr) = addr
-- peerAddr LocalHost = throw exception
socketFamily (SockAddrInet _ _) = AF_INET
socketFamily (SockAddrInet6 _ _ _ _) = AF_INET6
socketFamily (SockAddrUnix _) = AF_UNIX
withPort (SockAddrInet _ a) port = SockAddrInet (toEnum port) a
withPort (SockAddrInet6 _ a b c) port = SockAddrInet6 (toEnum port) a b c
withoutPort = (`withPort` 0)
data OutBoundMessage = OutBoundPresence Presence
| PresenceProbe JID JID
| Solicitation JID JID
| Approval JID JID
| Rejection JID JID
deriving Prelude.Show
getNamesForPeer :: Peer -> IO [S.ByteString]
getNamesForPeer LocalHost = fmap ((:[]) . S.pack) getHostName
getNamesForPeer peer@(RemotePeer addr) = do
ent <- getHostByAddr addr -- AF_UNSPEC addr
let names = hostName ent : hostAliases ent
return . map S.pack $ names
asHostNameJID :: JID -> IO (Maybe ByteString)
asHostNameJID jid = do
let n = name jid
rsc = resource jid
names <- getNamesForPeer (peer jid)
let tostr p = n <$++> "@" <?++> L.fromChunks [p] <++?> "/" <++$> rsc
jidstrs = fmap tostr names
return (listToMaybe jidstrs)
|