mirror of
https://github.com/FluuxIO/go-xmpp.git
synced 2025-12-21 06:03:44 -08:00
Added xmpp_component2 example.
This commit is contained in:
4
_examples/xmpp_component2/README.md
Normal file
4
_examples/xmpp_component2/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# xmpp_component2
|
||||
|
||||
|
||||
This program is an example of the simplest XMPP component: it connects to an XMPP server using XEP 114 protocol, perform a discovery query on the server and print the response.
|
||||
75
_examples/xmpp_component2/main.go
Normal file
75
_examples/xmpp_component2/main.go
Normal file
@@ -0,0 +1,75 @@
|
||||
package main
|
||||
|
||||
/*
|
||||
|
||||
Connect to an XMPP server using XEP 114 protocol, perform a discovery query on the server and print the response
|
||||
|
||||
*/
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"time"
|
||||
|
||||
xmpp "gosrc.io/xmpp"
|
||||
"gosrc.io/xmpp/stanza"
|
||||
)
|
||||
|
||||
const (
|
||||
domain = "mycomponent.localhost"
|
||||
address = "build.vpn.p1:8888"
|
||||
)
|
||||
|
||||
// Init and return a component
|
||||
func makeComponent() *xmpp.Component {
|
||||
opts := xmpp.ComponentOptions{
|
||||
TransportConfiguration: xmpp.TransportConfiguration{
|
||||
Address: address,
|
||||
Domain: domain,
|
||||
},
|
||||
Domain: domain,
|
||||
Secret: "secret",
|
||||
}
|
||||
router := xmpp.NewRouter()
|
||||
c, err := xmpp.NewComponent(opts, router, handleError)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return c
|
||||
}
|
||||
|
||||
func handleError(err error) {
|
||||
fmt.Println(err.Error())
|
||||
}
|
||||
|
||||
func main() {
|
||||
c := makeComponent()
|
||||
|
||||
// Connect Component to the server
|
||||
fmt.Printf("Connecting to %v\n", address)
|
||||
err := c.Connect()
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
// make a disco iq
|
||||
iqReq := stanza.NewIQ(stanza.Attrs{Type: stanza.IQTypeGet,
|
||||
From: domain,
|
||||
To: "localhost",
|
||||
Id: "my-iq1"})
|
||||
disco := iqReq.DiscoInfo()
|
||||
iqReq.Payload = disco
|
||||
|
||||
// res is the channel used to receive the result iq
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
|
||||
res, _ := c.SendIQ(ctx, iqReq)
|
||||
|
||||
select {
|
||||
case iqResponse := <-res:
|
||||
// Got response from server
|
||||
fmt.Print(iqResponse.Payload)
|
||||
case <-time.After(100 * time.Millisecond):
|
||||
cancel()
|
||||
panic("No iq response was received in time")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user