go-xmpp/_examples/xmpp_echo/xmpp_echo.go

53 lines
1.2 KiB
Go
Raw Normal View History

/*
xmpp_echo is a demo client that connect on an XMPP server and echo message received back to original sender.
*/
package main
import (
"fmt"
"log"
"os"
"gosrc.io/xmpp"
"gosrc.io/xmpp/stanza"
)
func main() {
2018-09-26 14:25:04 +00:00
config := xmpp.Config{
2018-01-26 08:55:39 +00:00
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-19 09:19:49 +00:00
router.HandleFunc("message", handleMessage)
2019-06-18 10:37:16 +00:00
client, err := xmpp.NewClient(config, router)
2018-09-23 16:40:13 +00:00
if err != nil {
log.Fatalf("%+v", err)
}
2019-06-07 14:30:57 +00:00
// If you pass the client to a connection manager, it will handle the reconnect policy
// for you automatically.
cm := xmpp.NewStreamManager(client, nil)
2019-06-18 10:37:16 +00:00
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)
}
// TODO create default command line client to send message or to send an arbitrary XMPP sequence from a file,
// (using templates ?)