go-xmpp/README.md

77 lines
2.5 KiB
Markdown
Raw Normal View History

2019-06-08 17:16:20 +00:00
# Fluux XMPP
2015-12-29 10:49:43 +00:00
2019-05-31 17:10:42 +00:00
[![Codeship Status for FluuxIO/xmpp](https://app.codeship.com/projects/dba7f300-d145-0135-6c51-26e28af241d2/status?branch=master)](https://app.codeship.com/projects/262399) [![GoDoc](https://godoc.org/gosrc.io/xmpp?status.svg)](https://godoc.org/gosrc.io/xmpp) [![GoReportCard](https://goreportcard.com/badge/gosrc.io/xmpp)](https://goreportcard.com/report/fluux.io/xmpp) [![codecov](https://codecov.io/gh/FluuxIO/go-xmpp/branch/master/graph/badge.svg)](https://codecov.io/gh/FluuxIO/go-xmpp)
2016-02-15 17:39:12 +00:00
2018-01-01 17:12:33 +00:00
Fluux XMPP is a Go XMPP library, focusing on simplicity, simple automation, and IoT.
2015-12-29 10:49:43 +00:00
2019-06-18 07:01:07 +00:00
The goal is to make simple to write simple XMPP clients and components:
2015-12-29 10:49:43 +00:00
- For automation (like for example monitoring of an XMPP service),
2015-12-29 10:52:02 +00:00
- 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:
- [XEP-0114: Jabber Component Protocol](https://xmpp.org/extensions/xep-0114.html)
- [XEP-0355: Namespace Delegation](https://xmpp.org/extensions/xep-0355.html)
- [XEP-0356: Privileged Entity](https://xmpp.org/extensions/xep-0356.html)
2015-12-29 10:52:02 +00:00
2019-06-07 13:40:34 +00:00
The library is designed to have minimal dependencies. For now, the library does not depend on any other library.
2018-12-26 18:29:57 +00:00
2019-06-18 13:01:21 +00:00
## Examples
2019-06-18 13:01:21 +00:00
We have several [examples](https://github.com/FluuxIO/go-xmpp/tree/master/_examples) to help you get started using
Fluux XMPP library.
Here is the demo "echo" client:
```go
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,
}
2019-06-18 10:37:16 +00:00
router := xmpp.NewRouter()
2019-06-22 09:29:47 +00:00
router.HandleFunc("message", handleMessage)
2019-06-18 10:37:16 +00:00
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.
2019-06-18 10:37:16 +00:00
cm := xmpp.NewStreamManager(client, nil)
log.Fatal(cm.Run())
}
func handleMessage(s xmpp.Sender, p stanza.Packet) {
msg, ok := p.(stanza.Message)
2019-06-18 10:37:16 +00:00
if !ok {
_, _ = fmt.Fprintf(os.Stdout, "Ignoring packet: %T\n", p)
return
}
2019-06-18 10:37:16 +00:00
_, _ = 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}
2019-06-18 10:37:16 +00:00
_ = s.Send(reply)
}
```
## Documentation
2018-12-26 17:59:40 +00:00
Please, check GoDoc for more information: [gosrc.io/xmpp](https://godoc.org/gosrc.io/xmpp)