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
|
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE ViewPatterns #-}
import Data.HList.TypeEqGeneric1()
import Data.HList.TypeCastGeneric1()
import ByteStringOperators
import Server
import Data.ByteString.Lazy.Char8 as L
( ByteString
, hPutStrLn
, unlines
, pack
, unpack
, init )
import qualified Data.ByteString.Lazy.Char8 as L
( putStrLn )
import System.IO
( Handle
)
import Control.Concurrent (forkIO)
import Control.Concurrent.Chan
import Data.HList
import AdaptServer
import Text.XML.HaXml.Lex (xmlLex)
import Text.XML.HaXml.Parse (xmlParseWith,element,doctypedecl,processinginstruction,elemOpenTag,elemCloseTag)
import Text.XML.HaXml.Types as Hax (ElemTag,QName(..),Namespace(..),Element(..),Content(..),AttValue(..))
import qualified Text.XML.HaXml.Types as Hax (Element)
import Data.Maybe
import Debug.Trace
greet host = L.unlines
[ "<?xml version='1.0'?>"
, "<stream:stream"
, "from='" <++> host <++> "'"
, "id='someid'"
, "xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>"
, "<stream:features>"
, " <bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'/>"
{-
-- , " <session xmlns='urn:ietf:params:xml:ns:xmpp-session'/>"
, " <mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'>"
-- , " <mechanism>DIGEST-MD5</mechanism>"
, " <mechanism>PLAIN</mechanism>"
, " </mechanisms> "
-}
, "</stream:features>"
]
startCon st = do
let h = hOccursFst st :: Handle
return (ConnectionFinalizer (return ()) .*. st)
iq_query_unavailable host id mjid xmlns = L.unlines $
[ "<iq type='error'"
, " from='" <++> host <++> "'"
, case mjid of Just jid -> " to='" <++> jid <++> "'"
Nothing -> ""
, " id='" <++> id <++> "'>"
, " <query xmlns='" <++> xmlns <++> "'/>"
, " <error type='cancel'>"
, " <service-unavailable"
, " xmlns='urn:ietf:params:xml:ns:xmpp-stanzas'/>"
, " </error>"
, "</iq>"
]
tagattrs tag content = Prelude.concatMap (\(CElem (Elem _ a _) _)->a)
$ Prelude.filter (bindElem tag) content
bindElem tag (CElem (Elem (N n) _ _) _) | n==tag = True
bindElem _ _ = False
hasElem tag content =
not . Prelude.null . Prelude.filter (bindElem tag) $ content
unattr (AttValue as) = listToMaybe $ Prelude.concatMap left as
where left (Left x) = [x]
left _ = []
astring (AttValue [Left s]) = [s]
tagcontent tag content = Prelude.concatMap (\(CElem (Elem _ _ c) _)->c)
$ Prelude.filter (bindElem tag) content
iqresult host id (Just rsrc) = L.unlines $
[ "<iq type='result' id='" <++> id <++> "'>"
, "<bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'>"
, "<jid>" <++> id <++> "@" <++> host <++> "/" <++> rsrc <++> "</jid>"
, "</bind>"
, "</iq> "
]
iqresult host id Nothing = L.unlines $
[ "<iq type='result'"
, " id='" <++> id <++> "'"
, " from='" <++> host <++> "'"
, " /> "
]
iqresult_info host id mjid = L.unlines $
[ "<iq type='result'"
, " from='" <++> host <++> "'"
, case mjid of Just jid -> " to='" <++> jid <++> "'"
Nothing -> ""
, " id='" <++> id <++> "'>"
, " <query xmlns='http://jabber.org/protocol/disco#info'>"
, " <identity"
, " category='server'"
, " type='im'"
, " name='" <++> host <++> "'/>"
, " <feature var='http://jabber.org/protocol/disco#info'/>"
, " <feature var='http://jabber.org/protocol/disco#items'/>"
, " </query>"
, "</iq>"
]
iqresponse host (Elem _ attrs content) = do
id <- fmap pack (lookup (N "id") attrs >>= unattr)
typ <- fmap pack (lookup (N "type") attrs >>= unattr)
case typ of
"set" -> do
let string (CString _ s _) = [s]
mplus (do
rsrc <- listToMaybe . Prelude.concatMap string . tagcontent "resource" . tagcontent "bind" $ content
Just $ iqresult host id (Just (pack rsrc)) )
(do
guard (hasElem "session" content)
Just (iqresult host id Nothing))
"get" -> trace ("iq-get "++show (attrs,content)) $ do
xmlns <- fmap pack $
lookup (N "xmlns") (tagattrs "query" content)
>>= listToMaybe . astring
Just (iq_query_unavailable host id Nothing xmlns)
_ -> Nothing
doCon st elem cont = do
let h = hOccursFst st :: Handle
host = "localhost"
hsend r = do
hPutStrLn h r
L.putStrLn $ "SENT:\n" <++> r
case elem of
OpenTag _ ->
hsend (greet host)
Element e@(Elem (N "iq") _ _) ->
case iqresponse host e of
Nothing -> trace "no respones" $ return ()
Just r -> hsend r
_ -> return () -- putStrLn $ "unhandled: "++show v
putStrLn (show elem)
cont ()
instance Show Hax.ElemTag where
show _ = "elemtag"
data XmppObject e i t c
= Element e
| ProcessingInstruction i
| OpenTag t
| CloseTag c
deriving Show
streamName = QN (Namespace {nsPrefix= "stream" , nsURI="http://etherx.jabber.org/streams" }) "stream"
xmppParse ls =
case xmlParseWith element ls of
(Right e,rs) -> (Right (Element e), rs)
(Left _,_) ->
case xmlParseWith elemOpenTag ls of
(Right e,rs) -> (Right (OpenTag e),rs)
(Left _,_) ->
case xmlParseWith (elemCloseTag streamName) ls of
(Right e,rs) -> (Right (CloseTag e),rs)
(Left _,_) ->
case xmlParseWith processinginstruction ls of
(Right e,rs) -> (Right (ProcessingInstruction e),rs)
(Left err,rs) -> (Left err,rs)
main = do
let (start,dopkt) =
adaptServer ( xmlLex "stream" . unpack
, xmppParse)
(startCon,doCon)
doServer (5222 .*. HNil)
dopkt
start
|