forked from jshiffer/go-xmpp
Merge pull request #20 from swdunlop/master
Add Options structure to consolidate NewClient arguments, and add Resource binding
This commit is contained in:
commit
700abb7449
96
xmpp.go
96
xmpp.go
@ -95,49 +95,81 @@ func connect(host, user, passwd string) (net.Conn, error) {
|
|||||||
return c, nil
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewClient creates a new connection to a host given as "hostname" or "hostname:port".
|
// Options are used to specify additional options for new clients, such as a Resource.
|
||||||
// If host is not specified, the DNS SRV should be used to find the host from the domainpart of the JID.
|
type Options struct {
|
||||||
// Default the port to 5222.
|
// Host specifies what host to connect to, as either "hostname" or "hostname:port"
|
||||||
func NewClient(host, user, passwd string) (*Client, error) {
|
// If host is not specified, the DNS SRV should be used to find the host from the domainpart of the JID.
|
||||||
c, err := connect(host, user, passwd)
|
// Default the port to 5222.
|
||||||
|
Host string
|
||||||
|
|
||||||
|
// User specifies what user to authenticate to the remote server.
|
||||||
|
User string
|
||||||
|
|
||||||
|
// Password supplies the password to use for authentication with the remote server.
|
||||||
|
Password string
|
||||||
|
|
||||||
|
// Resource specifies an XMPP client resource, like "bot", instead of accepting one
|
||||||
|
// from the server. Use "" to let the server generate one for your client.
|
||||||
|
Resource string
|
||||||
|
|
||||||
|
// NoTLS disables TLS and specifies that a plain old unencrypted TCP connection should
|
||||||
|
// be used.
|
||||||
|
NoTLS bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewClient establishes a new Client connection based on a set of Options.
|
||||||
|
func (o Options) NewClient() (*Client, error) {
|
||||||
|
host := o.Host
|
||||||
|
c, err := connect(host, o.User, o.Password)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
client := new(Client)
|
||||||
|
if o.NoTLS {
|
||||||
|
client.conn = c
|
||||||
|
} else {
|
||||||
tlsconn := tls.Client(c, &DefaultConfig)
|
tlsconn := tls.Client(c, &DefaultConfig)
|
||||||
if err = tlsconn.Handshake(); err != nil {
|
if err = tlsconn.Handshake(); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
if strings.LastIndex(o.Host, ":") > 0 {
|
||||||
if strings.LastIndex(host, ":") > 0 {
|
host = host[:strings.LastIndex(o.Host, ":")]
|
||||||
host = host[:strings.LastIndex(host, ":")]
|
|
||||||
}
|
}
|
||||||
if err = tlsconn.VerifyHostname(host); err != nil {
|
if err = tlsconn.VerifyHostname(host); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
client := new(Client)
|
|
||||||
client.conn = tlsconn
|
client.conn = tlsconn
|
||||||
if err := client.init(user, passwd); err != nil {
|
}
|
||||||
|
|
||||||
|
if err := client.init(&o); err != nil {
|
||||||
client.Close()
|
client.Close()
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
return client, nil
|
return client, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewClientNoTLS(host, user, passwd string) (*Client, error) {
|
// NewClient creates a new connection to a host given as "hostname" or "hostname:port".
|
||||||
c, err := connect(host, user, passwd)
|
// If host is not specified, the DNS SRV should be used to find the host from the domainpart of the JID.
|
||||||
if err != nil {
|
// Default the port to 5222.
|
||||||
return nil, err
|
func NewClient(host, user, passwd string) (*Client, error) {
|
||||||
|
opts := Options{
|
||||||
|
Host: host,
|
||||||
|
User: user,
|
||||||
|
Password: passwd,
|
||||||
}
|
}
|
||||||
|
return opts.NewClient()
|
||||||
|
}
|
||||||
|
|
||||||
client := new(Client)
|
func NewClientNoTLS(host, user, passwd string) (*Client, error) {
|
||||||
client.conn = c
|
opts := Options{
|
||||||
if err := client.init(user, passwd); err != nil {
|
Host: host,
|
||||||
client.Close()
|
User: user,
|
||||||
return nil, err
|
Password: passwd,
|
||||||
|
NoTLS: true,
|
||||||
}
|
}
|
||||||
return client, nil
|
return opts.NewClient()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) Close() error {
|
func (c *Client) Close() error {
|
||||||
@ -177,16 +209,16 @@ func cnonce() string {
|
|||||||
return fmt.Sprintf("%016x", cn)
|
return fmt.Sprintf("%016x", cn)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) init(user, passwd string) error {
|
func (c *Client) init(o *Options) error {
|
||||||
// For debugging: the following causes the plaintext of the connection to be duplicated to stdout.
|
// For debugging: the following causes the plaintext of the connection to be duplicated to stdout.
|
||||||
//c.p = xml.NewDecoder(tee{c.conn, os.Stdout})
|
//c.p = xml.NewDecoder(tee{c.conn, os.Stdout})
|
||||||
c.p = xml.NewDecoder(c.conn)
|
c.p = xml.NewDecoder(c.conn)
|
||||||
|
|
||||||
a := strings.SplitN(user, "@", 2)
|
a := strings.SplitN(o.User, "@", 2)
|
||||||
if len(a) != 2 {
|
if len(a) != 2 {
|
||||||
return errors.New("xmpp: invalid username (want user@domain): " + user)
|
return errors.New("xmpp: invalid username (want user@domain): " + o.User)
|
||||||
}
|
}
|
||||||
user = a[0]
|
user := a[0]
|
||||||
domain := a[1]
|
domain := a[1]
|
||||||
|
|
||||||
// Declare intent to be a jabber client.
|
// Declare intent to be a jabber client.
|
||||||
@ -216,7 +248,7 @@ func (c *Client) init(user, passwd string) error {
|
|||||||
if m == "PLAIN" {
|
if m == "PLAIN" {
|
||||||
mechanism = m
|
mechanism = m
|
||||||
// Plain authentication: send base64-encoded \x00 user \x00 password.
|
// Plain authentication: send base64-encoded \x00 user \x00 password.
|
||||||
raw := "\x00" + user + "\x00" + passwd
|
raw := "\x00" + user + "\x00" + o.Password
|
||||||
enc := make([]byte, base64.StdEncoding.EncodedLen(len(raw)))
|
enc := make([]byte, base64.StdEncoding.EncodedLen(len(raw)))
|
||||||
base64.StdEncoding.Encode(enc, []byte(raw))
|
base64.StdEncoding.Encode(enc, []byte(raw))
|
||||||
fmt.Fprintf(c.conn, "<auth xmlns='%s' mechanism='PLAIN'>%s</auth>\n",
|
fmt.Fprintf(c.conn, "<auth xmlns='%s' mechanism='PLAIN'>%s</auth>\n",
|
||||||
@ -241,7 +273,7 @@ func (c *Client) init(user, passwd string) error {
|
|||||||
kv := strings.SplitN(strings.TrimSpace(token), "=", 2)
|
kv := strings.SplitN(strings.TrimSpace(token), "=", 2)
|
||||||
if len(kv) == 2 {
|
if len(kv) == 2 {
|
||||||
if kv[1][0] == '"' && kv[1][len(kv[1])-1] == '"' {
|
if kv[1][0] == '"' && kv[1][len(kv[1])-1] == '"' {
|
||||||
kv[1] = kv[1][1:len(kv[1])-1]
|
kv[1] = kv[1][1 : len(kv[1])-1]
|
||||||
}
|
}
|
||||||
tokens[kv[0]] = kv[1]
|
tokens[kv[0]] = kv[1]
|
||||||
}
|
}
|
||||||
@ -253,8 +285,8 @@ func (c *Client) init(user, passwd string) error {
|
|||||||
cnonceStr := cnonce()
|
cnonceStr := cnonce()
|
||||||
digestUri := "xmpp/" + domain
|
digestUri := "xmpp/" + domain
|
||||||
nonceCount := fmt.Sprintf("%08x", 1)
|
nonceCount := fmt.Sprintf("%08x", 1)
|
||||||
digest := saslDigestResponse(user, realm, passwd, nonce, cnonceStr, "AUTHENTICATE", digestUri, nonceCount)
|
digest := saslDigestResponse(user, realm, o.Password, nonce, cnonceStr, "AUTHENTICATE", digestUri, nonceCount)
|
||||||
message := "username="+user+", realm="+realm+", nonce="+nonce+", cnonce="+cnonceStr+", nc="+nonceCount+", qop="+qop+", digest-uri="+digestUri+", response="+digest+", charset="+charset;
|
message := "username=" + user + ", realm=" + realm + ", nonce=" + nonce + ", cnonce=" + cnonceStr + ", nc=" + nonceCount + ", qop=" + qop + ", digest-uri=" + digestUri + ", response=" + digest + ", charset=" + charset
|
||||||
fmt.Fprintf(c.conn, "<response xmlns='%s'>%s</response>\n", nsSASL, base64.StdEncoding.EncodeToString([]byte(message)))
|
fmt.Fprintf(c.conn, "<response xmlns='%s'>%s</response>\n", nsSASL, base64.StdEncoding.EncodeToString([]byte(message)))
|
||||||
|
|
||||||
var rspauth saslRspAuth
|
var rspauth saslRspAuth
|
||||||
@ -305,7 +337,11 @@ func (c *Client) init(user, passwd string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Send IQ message asking to bind to the local user name.
|
// Send IQ message asking to bind to the local user name.
|
||||||
fmt.Fprintf(c.conn, "<iq type='set' id='x'><bind xmlns='%s'/></iq>\n", nsBind)
|
if o.Resource == "" {
|
||||||
|
fmt.Fprintf(c.conn, "<iq type='set' id='x'><bind xmlns='%s'></bind></iq>\n", nsBind)
|
||||||
|
} else {
|
||||||
|
fmt.Fprintf(c.conn, "<iq type='set' id='x'><bind xmlns='%s'><resource>%s</resource></bind></iq>\n", nsBind, o.Resource)
|
||||||
|
}
|
||||||
var iq clientIQ
|
var iq clientIQ
|
||||||
if err = c.p.DecodeElement(&iq, nil); err != nil {
|
if err = c.p.DecodeElement(&iq, nil); err != nil {
|
||||||
return errors.New("unmarshal <iq>: " + err.Error())
|
return errors.New("unmarshal <iq>: " + err.Error())
|
||||||
|
Loading…
Reference in New Issue
Block a user