2016-01-06 15:51:12 +00:00
|
|
|
/*
|
2019-06-07 14:33:10 +00:00
|
|
|
xmpp_echo is a demo client that connect on an XMPP server and echo message received back to original sender.
|
2016-01-06 15:51:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
|
2018-12-26 17:50:01 +00:00
|
|
|
"gosrc.io/xmpp"
|
2019-06-26 15:14:52 +00:00
|
|
|
"gosrc.io/xmpp/stanza"
|
2016-01-06 15:51:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2018-09-26 14:25:04 +00:00
|
|
|
config := xmpp.Config{
|
2019-10-11 04:41:15 +00:00
|
|
|
TransportConfiguration: xmpp.TransportConfiguration{
|
|
|
|
Address: "localhost:5222",
|
|
|
|
},
|
2018-01-26 08:55:39 +00:00
|
|
|
Jid: "test@localhost",
|
2019-10-01 08:59:55 +00:00
|
|
|
Credential: xmpp.Password("test"),
|
2019-06-29 08:45:25 +00:00
|
|
|
StreamLogger: os.Stdout,
|
2018-01-26 08:55:39 +00:00
|
|
|
Insecure: true,
|
2019-07-15 10:18:35 +00:00
|
|
|
// TLSConfig: tls.Config{InsecureSkipVerify: true},
|
2018-01-26 08:55:39 +00:00
|
|
|
}
|
2016-01-06 15:51:12 +00:00
|
|
|
|
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 {
|
2019-06-07 13:23:23 +00:00
|
|
|
log.Fatalf("%+v", err)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
|
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.
|
2019-06-08 16:09:22 +00:00
|
|
|
cm := xmpp.NewStreamManager(client, nil)
|
2019-06-18 10:37:16 +00:00
|
|
|
log.Fatal(cm.Run())
|
|
|
|
}
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2019-06-26 15:14:52 +00:00
|
|
|
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
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
2019-06-18 10:37:16 +00:00
|
|
|
|
|
|
|
_, _ = fmt.Fprintf(os.Stdout, "Body = %s - from = %s\n", msg.Body, msg.From)
|
2019-06-26 15:14:52 +00:00
|
|
|
reply := stanza.Message{Attrs: stanza.Attrs{To: msg.From}, Body: msg.Body}
|
2019-06-18 10:37:16 +00:00
|
|
|
_ = s.Send(reply)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|