aboutsummaryrefslogtreecommitdiff
path: root/connector/xmpp/config.go
blob: a3a97ecee0cf028d0bd17cd96e0e7d988cf4f0e0 (plain) (blame)
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
package xmpp

import (
	. "git.deuxfleurs.fr/Deuxfleurs/easybridge/connector"
)

const XMPP_PROTOCOL = "XMPP"

func init() {
	Register(XMPP_PROTOCOL, Protocol{
		NewConnector: func() Connector { return &XMPP{} },
		Schema: ConfigSchema{
			&ConfigEntry{
				Name:        "jid",
				Description: "JID",
				Required:    true,
			},
			&ConfigEntry{
				Name:        "password",
				Description: "Password",
				Required:    true,
				IsPassword:  true,
			},
			&ConfigEntry{
				Name:        "nickname",
				Description: "Nickname in MUCs",
				Required:    true,
			},
			&ConfigEntry{
				Name:        "port",
				Description: "Port",
				IsNumeric:   true,
				Default:     "5222",
			},
			&ConfigEntry{
				Name:        "ssl",
				Description: "Use SSL",
				IsBoolean:   true,
				Default:     "true",
			},
		},
	})
}