2016-01-06 15:51:12 +00:00
|
|
|
/*
|
|
|
|
xmpp_client is a demo client that connect on an XMPP server and echo message received back to original sender.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
|
2018-12-26 17:50:01 +00:00
|
|
|
"gosrc.io/xmpp"
|
2016-01-06 15:51:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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,
|
|
|
|
}
|
2016-01-06 15:51:12 +00:00
|
|
|
|
2018-09-26 14:25:04 +00:00
|
|
|
client, err := xmpp.NewClient(config)
|
2018-09-23 16:40:13 +00:00
|
|
|
if err != nil {
|
2016-01-06 15:51:12 +00:00
|
|
|
log.Fatal("Error: ", err)
|
|
|
|
}
|
|
|
|
|
2019-06-06 09:58:50 +00:00
|
|
|
cm := xmpp.NewClientManager(client, nil)
|
|
|
|
cm.Start()
|
2019-06-06 10:01:49 +00:00
|
|
|
// connection can be stopped with cm.Stop()
|
|
|
|
// connection state can be checked by reading cm.Client.CurrentState
|
2016-01-06 15:51:12 +00:00
|
|
|
|
|
|
|
// Iterator to receive packets coming from our XMPP connection
|
|
|
|
for packet := range client.Recv() {
|
|
|
|
switch packet := packet.(type) {
|
2019-06-06 09:58:50 +00:00
|
|
|
case xmpp.Message:
|
2018-12-26 17:50:01 +00:00
|
|
|
_, _ = fmt.Fprintf(os.Stdout, "Body = %s - from = %s\n", packet.Body, packet.From)
|
2018-01-13 17:50:17 +00:00
|
|
|
reply := xmpp.Message{PacketAttrs: xmpp.PacketAttrs{To: packet.From}, Body: packet.Body}
|
2018-12-26 17:50:01 +00:00
|
|
|
_ = client.Send(reply)
|
2016-01-06 15:51:12 +00:00
|
|
|
default:
|
2018-12-26 17:50:01 +00:00
|
|
|
_, _ = fmt.Fprintf(os.Stdout, "Ignoring packet: %T\n", packet)
|
2016-01-06 15:51:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO create default command line client to send message or to send an arbitrary XMPP sequence from a file,
|
2019-06-06 09:58:50 +00:00
|
|
|
// (using templates ?)
|