go-xmpp/_example/example.go

141 lines
3.3 KiB
Go
Raw Normal View History

2011-02-27 18:44:24 -08:00
package main
import (
2011-11-04 06:40:10 -07:00
"bufio"
2014-09-16 20:35:47 -07:00
"crypto/tls"
2011-02-27 18:44:24 -08:00
"flag"
2013-10-20 20:07:59 -07:00
"fmt"
"github.com/kjx98/go-xmpp"
2011-02-27 18:44:24 -08:00
"log"
"os"
"strings"
"time"
2011-02-27 18:44:24 -08:00
)
2019-01-08 21:52:43 -08:00
var server = flag.String("server", "", "server")
2011-02-27 18:44:24 -08:00
var username = flag.String("username", "", "username")
var password = flag.String("password", "", "password")
2014-10-04 09:29:19 -07:00
var status = flag.String("status", "xa", "status")
var statusMessage = flag.String("status-msg", "I for one welcome our new codebot overlords.", "status message")
var notls = flag.Bool("notls", true, "No TLS")
2013-10-20 20:07:59 -07:00
var debug = flag.Bool("debug", false, "debug output")
var session = flag.Bool("session", false, "use server session")
2011-07-12 06:03:21 -07:00
2014-09-16 20:35:47 -07:00
func serverName(host string) string {
return strings.Split(host, ":")[0]
}
2011-02-27 18:44:24 -08:00
func main() {
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "usage: example [options]\n")
flag.PrintDefaults()
os.Exit(2)
}
flag.Parse()
if *username == "" || *password == "" {
if *debug && *username == "" && *password == "" {
fmt.Fprintf(os.Stderr, "no username or password were given; attempting ANONYMOUS auth\n")
} else if *username != "" || *password != "" {
flag.Usage()
}
2011-02-27 18:44:24 -08:00
}
2014-09-16 20:35:47 -07:00
if !*notls {
2014-10-04 09:29:19 -07:00
xmpp.DefaultConfig = tls.Config{
ServerName: serverName(*server),
2014-09-16 20:35:47 -07:00
InsecureSkipVerify: false,
}
} else {
xmpp.DefaultConfig = tls.Config{
InsecureSkipVerify: true,
}
2014-09-16 20:35:47 -07:00
}
2013-05-14 19:24:46 -07:00
var talk *xmpp.Client
var err error
options := xmpp.Options{Host: *server,
2014-10-04 09:29:19 -07:00
User: *username,
Password: *password,
NoTLS: *notls,
Debug: *debug,
Session: *session,
Status: *status,
Resource: "bot",
2014-10-04 09:29:19 -07:00
StatusMessage: *statusMessage,
2014-10-04 09:22:05 -07:00
}
talk, err = options.NewClient()
2011-02-27 18:44:24 -08:00
if err != nil {
log.Fatal(err)
}
go func() {
2011-06-27 00:36:36 -07:00
for {
chat, err := talk.Recv()
if err != nil {
log.Fatal(err)
}
2013-02-11 17:43:33 -08:00
switch v := chat.(type) {
case xmpp.Chat:
if v.Type == "roster" {
fmt.Println("roster", v.Roster)
} else {
for _, element := range v.OtherElem {
if element.XMLName.Space == "jabber:x:conference" {
// if not join
talk.JoinMUCNoHistory(v.Remote, "bot")
}
// composing, paused, active
if element.XMLName.Space ==
"http://jabber.org/protocol/chatstates" &&
element.XMLName.Local == "composing" {
fmt.Println(v.Remote, "is composing")
}
}
if strings.TrimSpace(v.Text) != "" {
fmt.Println(v.Remote, v.Text)
}
}
2013-02-11 17:43:33 -08:00
case xmpp.Presence:
fmt.Println("Presence:", v.From, v.Show, v.Type)
case xmpp.Roster, xmpp.Contact:
// TODO: update local roster
fmt.Println("Roster/Contact:", v)
case xmpp.IQ:
// ping ignore
if v.Type == "result" && v.ID == "c2s1" {
fmt.Printf("Got pong from %s to %s\n", v.From, v.To)
2019-01-09 22:46:50 -08:00
} else {
fmt.Printf("Got from %s to %s IQ, tag: (%v), query(%s)\n",
v.From, v.To, v.QueryName, v.Query)
}
default:
fmt.Printf("def: %v\n", v)
2013-02-11 17:43:33 -08:00
}
2011-02-27 18:44:24 -08:00
}
}()
// get roster first
talk.Roster()
2019-01-09 22:46:50 -08:00
// test conf
//talk.JoinMUCNoHistory("test@conference.jabb3r.org", "bot")
2011-02-27 18:44:24 -08:00
for {
2011-11-04 06:40:10 -07:00
in := bufio.NewReader(os.Stdin)
line, err := in.ReadString('\n')
2011-02-27 18:44:24 -08:00
if err != nil {
continue
}
if len(line) >= 4 && line[:4] == "quit" {
break
}
2011-11-04 06:40:10 -07:00
line = strings.TrimRight(line, "\n")
2011-02-27 18:44:24 -08:00
2011-06-27 18:53:36 -07:00
tokens := strings.SplitN(line, " ", 2)
2011-02-27 18:44:24 -08:00
if len(tokens) == 2 {
2013-05-14 19:24:46 -07:00
talk.Send(xmpp.Chat{Remote: tokens[0], Type: "chat", Text: tokens[1]})
2011-02-27 18:44:24 -08:00
}
}
talk.SendOrg("</stream:stream")
time.Sleep(time.Second * 2)
2011-02-27 18:44:24 -08:00
}