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
|
package xmpp
import (
"encoding/xml"
"log"
)
type streamFeatures struct {
SaslMechanisms []string `xml:"urn:ietf:params:xml:ns:xmpp-sasl mechanisms>mechanism"`
Bind *bool `xml:"urn:ietf:params:xml:ns:xmpp-bind bind,omitempty"`
}
func handleStreamFeatures(s *session, f streamFeatures) {
if len(f.SaslMechanisms) > 0 {
for _, v := range f.SaslMechanisms {
if v == "PLAIN" {
s.sasl()
return
}
}
log.Println("No compatible SASL mechanism found!")
return
}
if f.Bind != nil {
s.sendBind()
return
}
}
func openStream(e *xml.Encoder, jid string) {
start := xml.StartElement{
xml.Name{"jabber:client", "stream:stream"},
[]xml.Attr{
xml.Attr{xml.Name{"", "from"}, jid},
xml.Attr{xml.Name{"", "to"}, domainpart(jid)},
xml.Attr{xml.Name{"", "version"}, "1.0"},
xml.Attr{xml.Name{"", "xml:lang"}, "en"},
xml.Attr{xml.Name{"", "xmlns:stream"}, "http://etherx.jabber.org/streams"},
},
}
err := e.EncodeToken(start)
if err != nil {
log.Println("Could not encode stream start!")
}
err = e.Flush()
if err != nil {
log.Println("Could not flush after stream start!")
}
}
func closeStream(e *xml.Encoder) {
end := xml.EndElement{xml.Name{"jabber:client", "stream:stream"}}
err := e.EncodeToken(end)
if err != nil {
log.Println("Could not encode stream end!")
}
err = e.Flush()
if err != nil {
log.Println("Could not flush after stream end!")
}
}
|