mirror of
				https://github.com/FluuxIO/go-xmpp.git
				synced 2025-11-03 16:53:44 -08:00 
			
		
		
		
	
			
				
					
						
					
					781b875cf1620cd7540fe936252e879bc7e91342
				
			
			
		
	Fluux XMPP
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. Fluux XMPP supports:
 
The library is designed to have minimal dependencies. For now, the library does not depend on any other library.
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{
		Address:      "localhost:5222",
		Jid:          "test@localhost",
		Password:     "test",
		PacketLogger: 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)
}
Documentation
Please, check GoDoc for more information: gosrc.io/xmpp
Description
				
					Languages
				
				
								
								
									Go
								
								99.9%