summaryrefslogtreecommitdiff
path: root/xmpp/streams.go
blob: 18a5e6a394df042d971c399227d0d83996aaee73 (plain)
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
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) {
	log.Print(f)

	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!")
	}
}

func iqHandler(s *session, e []xml.Token) {
	isResult := false
	idMatches := false

	result := xml.Attr{xml.Name{"", "type"}, "result"}
	id := xml.Attr{xml.Name{"", "id"}, s.resourceReq}

	switch start := e[0].(type) {
	case xml.StartElement:
		for _, v := range start.Attr {
			if v == result {
				isResult = true
			}
			if v == id {
				idMatches = true
			}
		}

		if isResult && idMatches {
			s.sendPresence()
		}
	}
}