Go to file
2019-11-04 16:32:59 +01:00
_examples Update go.sum file 2019-11-04 16:32:59 +01:00
cmd Update go.sum file 2019-11-04 16:32:59 +01:00
stanza Fix failing tests 2019-11-04 16:32:29 +01:00
.gitignore Ignore directory where I put private notes 2019-06-18 14:36:56 +02:00
auth.go Add X-OAUTH2 authentication and example 2019-10-01 11:40:31 +02:00
backoff.go Add constants (enumlike) for stanza types and simplify packet creation (#62) 2019-06-22 11:13:33 +02:00
backoff_test.go Add constants (enumlike) for stanza types and simplify packet creation (#62) 2019-06-22 11:13:33 +02:00
cert_checker.go Create a new stream after StartTLS 2019-10-28 16:38:10 +01:00
client.go Use a channel based API for SendIQ 2019-11-04 16:22:05 +01:00
client_internal_test.go Fixes issue with unescaped character % 2019-09-27 16:32:53 +02:00
client_test.go Move address into transport config 2019-10-28 16:38:10 +01:00
CODE_OF_CONDUCT.md Add CoC and contribution guide 2019-01-21 16:24:26 +01:00
codecov.yml Disable Codecov comments on PR 2019-05-31 19:08:20 +02:00
codeship-services.yml Add Codecov support 2018-01-01 18:57:56 +01:00
codeship-steps.yml Workaround Codeship coverage upload report issues 2018-01-02 16:21:45 +01:00
codeship.env.encrypted Add missing codecov token 2018-01-01 18:59:19 +01:00
component.go Add SendIQ to StreamClient and Sender 2019-11-04 16:22:05 +01:00
component_test.go fix stream management for component + add test 2019-09-02 11:50:29 +02:00
config.go Comments clean-up 2019-11-04 12:58:10 +01:00
conn_error.go With go modules, we should be able to remove import comments 2019-06-18 16:28:30 +02:00
CONTRIBUTING.md Add CoC and contribution guide 2019-01-21 16:24:26 +01:00
doc.go Add constants (enumlike) for stanza types and simplify packet creation (#62) 2019-06-22 11:13:33 +02:00
Dockerfile Update test platform to go1.13 2019-10-29 14:47:04 +01:00
go.mod Always add an id to IQ queries 2019-11-04 16:22:05 +01:00
go.sum Always add an id to IQ queries 2019-11-04 16:22:05 +01:00
jid.go With go modules, we should be able to remove import comments 2019-06-18 16:28:30 +02:00
jid_test.go With go modules, we should be able to remove import comments 2019-06-18 16:28:30 +02:00
LICENSE Moving XMPP library to Fluux project 2018-01-01 18:12:33 +01:00
network.go Adding tests and always use brackets in IPV6 addresses 2019-06-26 12:37:59 +02:00
network_test.go Improves IPV6 examples 2019-06-26 14:00:39 +02:00
README.md Update examples 2019-10-29 14:39:58 +01:00
router.go Use a channel based API for SendIQ 2019-11-04 16:22:05 +01:00
router_test.go Fix failing tests 2019-11-04 16:32:29 +01:00
session.go Only try startTls if the connection is not secure 2019-10-28 16:38:10 +01:00
stream_logger.go Comments clean-up 2019-11-04 12:58:10 +01:00
stream_manager.go Add SendIQ to StreamClient and Sender 2019-11-04 16:22:05 +01:00
tcp_server_mock.go With go modules, we should be able to remove import comments 2019-06-18 16:28:30 +02:00
test.sh Add test (and refactor them) for PR#15 (#18) 2019-02-10 17:53:18 +01:00
transport.go Comments clean-up 2019-11-04 12:58:10 +01:00
websocket_transport.go Increase size of XML decoder internal buffers 2019-11-04 09:58:04 +01:00
xmpp_transport.go Increase size of XML decoder internal buffers 2019-11-04 09:58:04 +01:00

Fluux XMPP

Codeship Status for FluuxIO/xmpp GoDoc GoReportCard codecov

Fluux XMPP is a Go XMPP library, focusing on simplicity, simple automation, and IoT.

The goal is to make simple to write simple XMPP clients and components:

  • For automation (like for example monitoring of an XMPP service),
  • For building connected "things" by plugging them on an XMPP server,
  • For writing simple chatbot to control a service or a thing,
  • For writing XMPP servers components.

The library is designed to have minimal dependencies. For now, the library does not depend on any other library.

Configuration and connection

Allowing Insecure TLS connection during development

It is not recommended to disable the check for domain name and certificate chain. Doing so would open your client to man-in-the-middle attacks.

However, in development, XMPP servers often use self-signed certificates. In that situation, it is better to add the root CA that signed the certificate to your trusted list of root CA. It avoids changing the code and limit the risk of shipping an insecure client to production.

That said, if you really want to allow your client to trust any TLS certificate, you can customize Go standard tls.Config and set it in Config struct.

Here is an example code to configure a client to allow connecting to a server with self-signed certificate. Note the InsecureSkipVerify option. When using this tls.Config option, all the checks on the certificate are skipped.

config := xmpp.Config{
	Address:      "localhost:5222",
	Jid:          "test@localhost",
	Credential:   xmpp.Password("Test"),
	TLSConfig:    tls.Config{InsecureSkipVerify: true},
}

Supported specifications

Clients

Components

Stanza subpackage

XMPP stanzas are basic and extensible XML elements. Stanzas (or sometimes special stanzas called 'nonzas') are used to leverage the XMPP protocol features. During a session, a client (or a component) and a server will be exchanging stanzas back and forth.

At a low-level, stanzas are XML fragments. However, Fluux XMPP library provides the building blocks to interact with stanzas at a high-level, providing a Go-friendly API.

The stanza subpackage provides support for XMPP stream parsing, marshalling and unmarshalling of XMPP stanza. It is a bridge between high-level Go structure and low-level XMPP protocol.

Parsing, marshalling and unmarshalling is automatically handled by Fluux XMPP client library. As a developer, you will generally manipulates only the high-level structs provided by the stanza package.

The XMPP protocol, as the name implies is extensible. If your application is using custom stanza extensions, you can implement your own extensions directly in your own application.

To learn more about the stanza package, you can read more in the stanza package documentation.

Examples

We have several examples to help you get started using Fluux XMPP library.

Here is the demo "echo" client:

package main

import (
	"fmt"
	"log"
	"os"

	"gosrc.io/xmpp"
	"gosrc.io/xmpp/stanza"
)

func main() {
	config := xmpp.Config{
		TransportConfiguration: xmpp.TransportConfiguration{
			Address: "localhost:5222",
		},
		Jid:          "test@localhost",
	    Credential:   xmpp.Password("Test"),
		StreamLogger: os.Stdout,
		Insecure:     true,
	}

	router := xmpp.NewRouter()
	router.HandleFunc("message", handleMessage)

	client, err := xmpp.NewClient(config, router)
	if err != nil {
		log.Fatalf("%+v", err)
	}

	// If you pass the client to a connection manager, it will handle the reconnect policy
	// for you automatically.
	cm := xmpp.NewStreamManager(client, nil)
	log.Fatal(cm.Run())
}

func handleMessage(s xmpp.Sender, p stanza.Packet) {
	msg, ok := p.(stanza.Message)
	if !ok {
		_, _ = fmt.Fprintf(os.Stdout, "Ignoring packet: %T\n", p)
		return
	}

	_, _ = fmt.Fprintf(os.Stdout, "Body = %s - from = %s\n", msg.Body, msg.From)
	reply := stanza.Message{Attrs: stanza.Attrs{To: msg.From}, Body: msg.Body}
	_ = s.Send(reply)
}

Reference documentation

The code documentation is available on GoDoc: gosrc.io/xmpp