9c8353d081
For now we are planning to support Password and OAuthToken. In the future, we would like to add certificate-based authentication.
80 lines
2.1 KiB
Go
80 lines
2.1 KiB
Go
package xmpp
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"encoding/xml"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
|
|
"gosrc.io/xmpp/stanza"
|
|
)
|
|
|
|
// Credential is used to pass the type of secret that will be used to connect to XMPP server.
|
|
// It can be either a password or an OAuth 2 bearer token.
|
|
type Credential struct {
|
|
secret string
|
|
mechanisms []string
|
|
}
|
|
|
|
func Password(pwd string) Credential {
|
|
credential := Credential{
|
|
secret: pwd,
|
|
mechanisms: []string{"PLAIN"},
|
|
}
|
|
return credential
|
|
}
|
|
|
|
func OAuthToken(token string) Credential {
|
|
credential := Credential{
|
|
secret: token,
|
|
mechanisms: []string{"X-OAUTH2"},
|
|
}
|
|
return credential
|
|
}
|
|
|
|
// ============================================================================
|
|
// Authentication flow for SASL mechanisms
|
|
|
|
func authSASL(socket io.ReadWriter, decoder *xml.Decoder, f stanza.StreamFeatures, user string, credential Credential) (err error) {
|
|
// TODO: Implement other type of SASL mechanisms
|
|
havePlain := false
|
|
for _, m := range f.Mechanisms.Mechanism {
|
|
if m == "PLAIN" {
|
|
havePlain = true
|
|
break
|
|
}
|
|
}
|
|
if !havePlain {
|
|
err := fmt.Errorf("PLAIN authentication is not supported by server: %v", f.Mechanisms.Mechanism)
|
|
return NewConnError(err, true)
|
|
}
|
|
|
|
return authPlain(socket, decoder, user, credential)
|
|
}
|
|
|
|
// Plain authentication: send base64-encoded \x00 user \x00 password
|
|
func authPlain(socket io.ReadWriter, decoder *xml.Decoder, user string, credential Credential) error {
|
|
raw := "\x00" + user + "\x00" + credential.secret
|
|
enc := make([]byte, base64.StdEncoding.EncodedLen(len(raw)))
|
|
base64.StdEncoding.Encode(enc, []byte(raw))
|
|
fmt.Fprintf(socket, "<auth xmlns='%s' mechanism='PLAIN'>%s</auth>", stanza.NSSASL, enc)
|
|
|
|
// Next message should be either success or failure.
|
|
val, err := stanza.NextPacket(decoder)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
switch v := val.(type) {
|
|
case stanza.SASLSuccess:
|
|
case stanza.SASLFailure:
|
|
// v.Any is type of sub-element in failure, which gives a description of what failed.
|
|
err := errors.New("auth failure: " + v.Any.Local)
|
|
return NewConnError(err, true)
|
|
default:
|
|
return errors.New("expected SASL success or failure, got " + v.Name())
|
|
}
|
|
return err
|
|
}
|