Added support for private messages.

This commit is contained in:
Martin Dosch 2019-05-31 10:40:40 +02:00
parent 800db2616e
commit 377d469179

View file

@ -225,9 +225,12 @@ func processStanzas(client *xmpp.Client, muc string, mucNick string, feeds []str
switch v := stanza.(type) { switch v := stanza.(type) {
// Reply to requests for source and feeds. // Reply to requests for source and feeds.
case xmpp.Chat: case xmpp.Chat:
var command string
// Check for room mention of the bots nick if the the message type is groupchat.
if v.Type == "groupchat" {
// Get first word of the message and transform it to lower case. // Get first word of the message and transform it to lower case.
var mention string mention := strings.ToLower(strings.Split(v.Text, " ")[0])
mention = strings.ToLower(strings.Split(v.Text, " ")[0])
// If it is not the bots nick remove one trailing character as // If it is not the bots nick remove one trailing character as
// a lot of clients append `:` or `,` to mentions. // a lot of clients append `:` or `,` to mentions.
@ -243,12 +246,23 @@ func processStanzas(client *xmpp.Client, muc string, mucNick string, feeds []str
break break
} }
} }
// As the first word is the mention of the bots nickname, the command is
// the second word in a groupchat message.
command = strings.ToLower(strings.Split(v.Text, " ")[1])
// If the message type is chat (e.g. private message), the command is the
// first word.
} else if v.Type == "chat" {
command = strings.ToLower(strings.Split(v.Text, " ")[0])
} else {
break
}
// Check for the second word (command). // Check for the command.
switch strings.ToLower(strings.Split(v.Text, " ")[1]) { switch command {
// Reply with a short summary of available commands for `help`. // Reply with a short summary of available commands for `help`.
case "help": case "help":
if v.Type == "groupchat" {
_, err = client.Send(xmpp.Chat{Remote: muc, _, err = client.Send(xmpp.Chat{Remote: muc,
Type: "groupchat", Text: strings.Split(v.Remote, "/")[1] + Type: "groupchat", Text: strings.Split(v.Remote, "/")[1] +
": The following commands are available:\n" + ": The following commands are available:\n" +
@ -257,8 +271,18 @@ func processStanzas(client *xmpp.Client, muc string, mucNick string, feeds []str
if err != nil { if err != nil {
log.Fatal("Error: Failed sending message to MUC:", err) log.Fatal("Error: Failed sending message to MUC:", err)
} }
} else if v.Type == "chat" {
_, err = client.Send(xmpp.Chat{Remote: v.Remote,
Type: "chat", Text: "The following commands are available:\n" +
"\"feeds\": List feeds I'm following.\n" +
"\"source\": Show source code URL."})
if err != nil {
log.Fatal("Error: Failed sending message to ", v.Remote, ": ", err)
}
}
// Reply with repo address for `source`. // Reply with repo address for `source`.
case "source": case "source":
if v.Type == "groupchat" {
_, err = client.Send(xmpp.Chat{Remote: muc, _, err = client.Send(xmpp.Chat{Remote: muc,
Type: "groupchat", Text: strings.Split(v.Remote, "/")[1] + Type: "groupchat", Text: strings.Split(v.Remote, "/")[1] +
": My source can be found at " + ": My source can be found at " +
@ -266,6 +290,14 @@ func processStanzas(client *xmpp.Client, muc string, mucNick string, feeds []str
if err != nil { if err != nil {
log.Fatal("Error: Failed sending message to MUC:", err) log.Fatal("Error: Failed sending message to MUC:", err)
} }
} else if v.Type == "chat" {
_, err = client.Send(xmpp.Chat{Remote: v.Remote,
Type: "chat", Text: "My source can be found at " +
"https://salsa.debian.org/mdosch-guest/feed-to-muc"})
if err != nil {
log.Fatal("Error: Failed sending message to ", v.Remote, ": ", err)
}
}
// Reply with the list of monitored feeds for `feeds`. // Reply with the list of monitored feeds for `feeds`.
case "feeds": case "feeds":
var feedList string var feedList string
@ -274,12 +306,20 @@ func processStanzas(client *xmpp.Client, muc string, mucNick string, feeds []str
feedList = feedList + feed + "\n" feedList = feedList + feed + "\n"
} }
if v.Type == "groupchat" {
_, err = client.Send(xmpp.Chat{Remote: muc, _, err = client.Send(xmpp.Chat{Remote: muc,
Type: "groupchat", Text: strings.Split(v.Remote, "/")[1] + Type: "groupchat", Text: strings.Split(v.Remote, "/")[1] +
": Feeds I'm following:\n" + feedList}) ": Feeds I'm following:\n" + feedList})
if err != nil { if err != nil {
log.Fatal("Error: Failed sending message to MUC:", err) log.Fatal("Error: Failed sending message to MUC:", err)
} }
} else if v.Type == "chat" {
_, err = client.Send(xmpp.Chat{Remote: v.Remote,
Type: "chat", Text: "Feeds I'm following:\n" + feedList})
if err != nil {
log.Fatal("Error: Failed sending message to ", v.Remote, ": ", err)
}
}
} }