2016-01-06 07:51:12 -08:00
|
|
|
/*
|
2019-06-07 07:33:10 -07:00
|
|
|
xmpp_echo is a demo client that connect on an XMPP server and echo message received back to original sender.
|
2016-01-06 07:51:12 -08:00
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
|
2018-12-26 09:50:01 -08:00
|
|
|
"gosrc.io/xmpp"
|
2019-06-26 08:14:52 -07:00
|
|
|
"gosrc.io/xmpp/stanza"
|
2016-01-06 07:51:12 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2018-09-26 07:25:04 -07:00
|
|
|
config := xmpp.Config{
|
2019-10-10 21:41:15 -07:00
|
|
|
TransportConfiguration: xmpp.TransportConfiguration{
|
2019-10-29 06:39:58 -07:00
|
|
|
Address: "localhost:5222",
|
2019-10-10 21:41:15 -07:00
|
|
|
},
|
2018-01-26 00:55:39 -08:00
|
|
|
Jid: "test@localhost",
|
2019-10-01 01:59:55 -07:00
|
|
|
Credential: xmpp.Password("test"),
|
2019-06-29 01:45:25 -07:00
|
|
|
StreamLogger: os.Stdout,
|
2018-01-26 00:55:39 -08:00
|
|
|
Insecure: true,
|
2019-07-15 03:18:35 -07:00
|
|
|
// TLSConfig: tls.Config{InsecureSkipVerify: true},
|
2018-01-26 00:55:39 -08:00
|
|
|
}
|
2016-01-06 07:51:12 -08:00
|
|
|
|
2019-06-18 03:37:16 -07:00
|
|
|
router := xmpp.NewRouter()
|
2019-06-19 02:19:49 -07:00
|
|
|
router.HandleFunc("message", handleMessage)
|
2019-06-18 03:37:16 -07:00
|
|
|
|
|
|
|
client, err := xmpp.NewClient(config, router)
|
2018-09-23 09:40:13 -07:00
|
|
|
if err != nil {
|
2019-06-07 06:23:23 -07:00
|
|
|
log.Fatalf("%+v", err)
|
2016-01-06 07:51:12 -08:00
|
|
|
}
|
|
|
|
|
2019-06-07 07:30:57 -07:00
|
|
|
// If you pass the client to a connection manager, it will handle the reconnect policy
|
|
|
|
// for you automatically.
|
2019-06-08 09:09:22 -07:00
|
|
|
cm := xmpp.NewStreamManager(client, nil)
|
2019-06-18 03:37:16 -07:00
|
|
|
log.Fatal(cm.Run())
|
|
|
|
}
|
2016-01-06 07:51:12 -08:00
|
|
|
|
2019-06-26 08:14:52 -07:00
|
|
|
func handleMessage(s xmpp.Sender, p stanza.Packet) {
|
|
|
|
msg, ok := p.(stanza.Message)
|
2019-06-18 03:37:16 -07:00
|
|
|
if !ok {
|
|
|
|
_, _ = fmt.Fprintf(os.Stdout, "Ignoring packet: %T\n", p)
|
|
|
|
return
|
2016-01-06 07:51:12 -08:00
|
|
|
}
|
2019-06-18 03:37:16 -07:00
|
|
|
|
|
|
|
_, _ = fmt.Fprintf(os.Stdout, "Body = %s - from = %s\n", msg.Body, msg.From)
|
2019-06-26 08:14:52 -07:00
|
|
|
reply := stanza.Message{Attrs: stanza.Attrs{To: msg.From}, Body: msg.Body}
|
2019-06-18 03:37:16 -07:00
|
|
|
_ = s.Send(reply)
|
2016-01-06 07:51:12 -08:00
|
|
|
}
|