go-xmpp/cmd/xmpp_echo/xmpp_echo.go

53 lines
1.2 KiB
Go
Raw Normal View History

/*
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-01-01 17:12:33 +00:00
"fluux.io/xmpp"
)
func main() {
2018-01-26 08:55:39 +00:00
options := xmpp.Options{
Address: "localhost:5222",
Jid: "test@localhost",
Password: "test",
PacketLogger: os.Stdout,
Insecure: true,
}
2018-09-23 16:40:13 +00:00
client, err := xmpp.NewClient(options)
if err != nil {
log.Fatal("Error: ", err)
}
2018-09-23 16:40:13 +00:00
session, err := client.Connect()
if err != nil {
log.Fatal("Error: ", err)
}
fmt.Println("Stream opened, we have streamID = ", session.StreamId)
// Iterator to receive packets coming from our XMPP connection
for packet := range client.Recv() {
switch packet := packet.(type) {
2018-01-13 17:50:17 +00:00
case *xmpp.Message:
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-01-26 08:55:39 +00:00
client.Send(reply)
default:
fmt.Fprintf(os.Stdout, "Ignoring packet: %T\n", packet)
}
}
}
// TODO create default command line client to send message or to send an arbitrary XMPP sequence from a file,
// (using templates ?)
// TODO: autoreconnect when connection is lost