go-sendxmpp/go-sendxmpp.go

367 lines
8.5 KiB
Go
Raw Normal View History

2018-08-04 10:19:32 +00:00
/* Copyright 2018 Martin Dosch
2018-08-10 10:14:21 +00:00
2018-08-04 10:19:32 +00:00
Licensed under the "MIT License" */
2018-08-04 10:16:28 +00:00
package main
import (
"bufio"
2018-08-10 10:14:21 +00:00
"errors"
2018-08-04 10:16:28 +00:00
"io"
"log"
"os"
2018-08-10 10:14:21 +00:00
"os/user"
"strconv"
"strings"
"time"
2018-08-04 10:16:28 +00:00
"github.com/mattn/go-xmpp" // BSD-3-Clause
"github.com/pborman/getopt/v2" // BSD-3-Clause
"salsa.debian.org/mdosch-guest/gopkg/jid" // BSD-2-Clause
2018-08-04 10:16:28 +00:00
)
2018-08-10 10:14:21 +00:00
type configuration struct {
username string
jserver string
port string
password string
}
// Opens the config file and returns the specified values
// for username, server and port.
func parseConfig(configPath string) (configuration, error) {
var (
output configuration
err error
)
// Use ~/.sendxmpprc if no config path is specified.
if configPath == "" {
// Get systems user config path.
osConfigDir := os.Getenv("$XDG_CONFIG_HOME")
if osConfigDir != "" {
configPath = osConfigDir + "/.sendxmpprc"
} else {
// Get the current user.
curUser, err := user.Current()
if err != nil {
return output, err
}
// Get home directory.
home := curUser.HomeDir
if home == "" {
return output, errors.New("no home directory found")
2018-08-10 10:14:21 +00:00
}
configPath = home + "/.sendxmpprc"
}
}
// Check that config file is existing.
info, err := os.Stat(configPath)
if os.IsNotExist(err) {
return output, err
}
2018-08-10 10:41:13 +00:00
// Check for file permissions. Must be 600 or 400.
2018-08-10 10:14:21 +00:00
perm := info.Mode().Perm()
2018-08-10 10:41:13 +00:00
permissions := strconv.FormatInt(int64(perm), 8)
if permissions != "600" && permissions != "400" {
2018-08-10 10:14:21 +00:00
return output, errors.New("Wrong permissions for " + configPath + ": " +
2018-08-10 10:41:13 +00:00
permissions + " instead of 600.")
2018-08-10 10:14:21 +00:00
}
// Open config file.
file, err := os.Open(configPath)
if err != nil {
return output, err
}
defer file.Close()
scanner := bufio.NewScanner(file)
scanner.Split(bufio.ScanLines)
// Read config file per line.
for scanner.Scan() {
if strings.HasPrefix(scanner.Text(), "#") == true {
continue
}
row := strings.Split(scanner.Text(), " ")
switch row[0] {
case "username:":
output.username = row[1]
case "jserver:":
output.jserver = row[1]
case "password:":
output.password = row[1]
case "port:":
output.port = row[1]
default:
if len(row) >= 2 {
if strings.Contains(scanner.Text(), ";") == true {
output.username = strings.Split(row[0], ";")[0]
output.jserver = strings.Split(row[0], ";")[1]
output.password = row[1]
} else {
output.username = strings.Split(row[0], ":")[0]
output.jserver = strings.Split(row[0], "@")[1]
output.password = row[1]
}
}
}
}
return output, err
}
func readMessage(messageFilePath string) (string, error) {
var (
output string
err error
)
// Check that message file is existing.
_, err = os.Stat(messageFilePath)
if os.IsNotExist(err) {
return output, err
}
// Open message file.
file, err := os.Open(messageFilePath)
if err != nil {
return output, err
}
defer file.Close()
scanner := bufio.NewScanner(file)
scanner.Split(bufio.ScanLines)
for scanner.Scan() {
if output == "" {
output = scanner.Text()
} else {
output = output + "\n" + scanner.Text()
}
}
if err := scanner.Err(); err != nil {
if err != io.EOF {
return "", err
}
}
return output, err
}
2018-08-04 10:16:28 +00:00
func main() {
var (
err error
message, user, server, password string
2018-08-04 10:16:28 +00:00
)
2018-08-10 10:14:21 +00:00
// Define command line flags.
flagHelp := getopt.BoolLong("help", 0, "Show help.")
flagDebug := getopt.BoolLong("debug", 'd', "Show debugging info.")
flagServer := getopt.StringLong("jserver", 'j', "", "XMPP server address.")
flagUser := getopt.StringLong("username", 'u', "", "Username for XMPP account.")
flagPassword := getopt.StringLong("password", 'p', "", "Password for XMPP account.")
flagChatroom := getopt.BoolLong("chatroom", 'c', "Send message to a chatroom.")
flagTLS := getopt.BoolLong("tls", 't', "Use TLS.")
flagStartTLS := getopt.BoolLong("start-tls", 'x', "Use StartTLS.")
flagResource := getopt.StringLong("resource", 'r', "go-sendxmpp", "Set resource. "+
"When sending to a chatroom this is used as 'alias'. (Default: go-sendxmpp)")
flagFile := getopt.StringLong("file", 'f', "", "Set configuration file. (Default: ~/.sendxmpprc)")
flagMessageFile := getopt.StringLong("message", 'm', "", "Set file including the message.")
flagInteractive := getopt.BoolLong("interactive", 'i', "Interactive mode (for use with e.g. 'tail -f').")
2018-08-10 10:14:21 +00:00
// Parse command line flags.
getopt.Parse()
// If requested, show help and quit.
if *flagHelp {
getopt.Usage()
os.Exit(0)
}
// Read recipients from command line and quit if none are specified.
recipients := getopt.Args()
if len(recipients) == 0 {
log.Fatal("No recipient specified.")
}
2018-08-04 10:16:28 +00:00
2018-08-10 10:14:21 +00:00
// Quit if unreasonable TLS setting is set.
if *flagStartTLS == true && *flagTLS == true {
log.Fatal("Use either TLS or StartTLS.")
}
// Check that all recipient JIDs are valid.
for i, recipient := range recipients {
validatedJid, err := jid.MarshalJID(recipient)
2018-08-10 10:14:21 +00:00
if err != nil {
log.Fatal(err)
}
recipients[i] = validatedJid
}
2018-08-04 10:16:28 +00:00
if *flagUser == "" || *flagServer == "" || *flagPassword == "" {
// Read configuration from file.
config, err := parseConfig(*flagFile)
if err != nil {
log.Println("Error parsing ", *flagFile, ": ", err)
}
// Set connection options according to config.
user = config.username
server = config.jserver
password = config.password
if config.port != "" {
server = server + ":" + config.port
}
}
// Overwrite user if specified via command line flag.
if *flagUser != "" {
user = *flagUser
}
// Overwrite server if specified via command line flag.
if *flagServer != "" {
server = *flagServer
}
// Overwrite password if specified via command line flag.
if *flagPassword != "" {
password = *flagPassword
}
2018-08-10 10:14:21 +00:00
// Set XMPP connection options.
2018-08-04 10:16:28 +00:00
options := xmpp.Options{
2018-08-10 10:14:21 +00:00
Host: server,
User: user,
Resource: *flagResource,
Password: password,
NoTLS: !*flagTLS,
StartTLS: *flagStartTLS,
Debug: *flagDebug,
2018-08-04 10:16:28 +00:00
}
// Read message from file.
if *flagMessageFile != "" {
message, err = readMessage(*flagMessageFile)
if err != nil {
log.Fatal(err)
}
}
2018-08-04 10:16:28 +00:00
// Connect to server.
client, err := options.NewClient()
if err != nil {
log.Fatal(err)
}
// Skip reading message if '-i' or '--interactive' is set to work with e.g. 'tail -f'.
if *flagInteractive == false {
if message == "" {
2018-08-04 10:16:28 +00:00
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
2018-08-04 10:16:28 +00:00
if message == "" {
message = scanner.Text()
} else {
message = message + "\n" + scanner.Text()
}
2018-08-04 10:16:28 +00:00
}
if err := scanner.Err(); err != nil {
if err != io.EOF {
log.Fatal(err)
}
2018-08-04 10:16:28 +00:00
}
}
}
2018-08-10 10:14:21 +00:00
// Send message to chatroom(s) if the flag is set.
if *flagChatroom {
2018-08-04 10:16:28 +00:00
2018-08-10 10:14:21 +00:00
for _, recipient := range recipients {
2018-08-04 10:16:28 +00:00
2018-08-10 10:14:21 +00:00
// Join the MUC.
_, err := client.JoinMUCNoHistory(recipient, *flagResource)
2018-08-10 10:14:21 +00:00
if err != nil {
log.Fatal(err)
}
}
2018-08-10 10:14:21 +00:00
// Send in endless loop (for usage with e.g. "tail -f").
if *flagInteractive == true {
for {
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
message = scanner.Text()
for _, recipient := range recipients {
2018-08-20 11:24:48 +00:00
_, err = client.Send(xmpp.Chat{Remote: recipient,
Type: "groupchat", Text: message})
if err != nil {
log.Fatal(err)
}
}
}
} else {
2018-08-10 10:14:21 +00:00
// Send the message.
for _, recipient := range recipients {
2018-08-20 11:24:48 +00:00
_, err = client.Send(xmpp.Chat{Remote: recipient,
Type: "groupchat", Text: message})
if err != nil {
log.Fatal(err)
}
2018-08-10 10:14:21 +00:00
}
}
2018-08-10 10:14:21 +00:00
for _, recipient := range recipients {
2018-08-10 10:14:21 +00:00
// After sending the message, leave the Muc
_, err = client.LeaveMUC(recipient)
if err != nil {
log.Println(err)
}
2018-08-04 10:16:28 +00:00
}
2018-08-10 10:14:21 +00:00
} else {
// If the chatroom flag is not set, send message to contact(s).
2018-08-04 10:16:28 +00:00
// Send in endless loop (for usage with e.g. "tail -f").
if *flagInteractive == true {
for {
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
message = scanner.Text()
for _, recipient := range recipients {
2018-08-20 11:24:48 +00:00
_, err = client.Send(xmpp.Chat{Remote: recipient,
Type: "chat", Text: message})
if err != nil {
log.Fatal(err)
}
}
}
} else {
for _, recipient := range recipients {
2018-08-20 11:24:48 +00:00
_, err = client.Send(xmpp.Chat{Remote: recipient, Type: "chat",
Text: message})
if err != nil {
log.Fatal(err)
}
2018-08-10 10:14:21 +00:00
}
2018-08-04 10:16:28 +00:00
}
}
// Wait for a short time as some messages are not delievered by the server
// if the connection is closed immediately after sending a message.
time.Sleep(100 * time.Millisecond)
2019-02-13 17:31:14 +00:00
// Close XMPP connection
err = client.Close()
if err != nil {
log.Fatal(err)
}
2018-08-04 10:16:28 +00:00
}