Ad-Hoc support for chat commands
This commit is contained in:
parent
a0180eff75
commit
b0c5302c82
|
@ -14,6 +14,7 @@ import (
|
||||||
"github.com/zelenin/go-tdlib/client"
|
"github.com/zelenin/go-tdlib/client"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const unknownCommand string = "Unknown command"
|
||||||
const notEnoughArguments string = "Not enough arguments"
|
const notEnoughArguments string = "Not enough arguments"
|
||||||
const TelegramNotInitialized string = "Telegram connection is not initialized yet"
|
const TelegramNotInitialized string = "Telegram connection is not initialized yet"
|
||||||
const TelegramAuthDone string = "Authorization is done already"
|
const TelegramAuthDone string = "Authorization is done already"
|
||||||
|
@ -272,7 +273,7 @@ func (c *Client) ProcessTransportCommand(cmdline string, resource string) string
|
||||||
cmd, args := parseCommand(cmdline)
|
cmd, args := parseCommand(cmdline)
|
||||||
command, ok := transportCommands[cmd]
|
command, ok := transportCommands[cmd]
|
||||||
if !ok {
|
if !ok {
|
||||||
return "Unknown command"
|
return unknownCommand
|
||||||
}
|
}
|
||||||
if len(args) < command.RequiredArgs {
|
if len(args) < command.RequiredArgs {
|
||||||
return notEnoughArguments
|
return notEnoughArguments
|
||||||
|
@ -498,6 +499,14 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd, args := parseCommand(cmdline)
|
cmd, args := parseCommand(cmdline)
|
||||||
|
command, ok := chatCommands[cmd]
|
||||||
|
if !ok {
|
||||||
|
return unknownCommand, false
|
||||||
|
}
|
||||||
|
if len(args) < command.RequiredArgs {
|
||||||
|
return notEnoughArguments, true
|
||||||
|
}
|
||||||
|
|
||||||
switch cmd {
|
switch cmd {
|
||||||
// delete message
|
// delete message
|
||||||
case "d":
|
case "d":
|
||||||
|
@ -542,9 +551,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
if c.me == nil {
|
if c.me == nil {
|
||||||
return "@me is not initialized", true
|
return "@me is not initialized", true
|
||||||
}
|
}
|
||||||
if len(args) < 1 {
|
|
||||||
return "Not enough arguments", true
|
|
||||||
}
|
|
||||||
|
|
||||||
messages, err := c.getLastMessages(chatID, "", c.me.Id, 1)
|
messages, err := c.getLastMessages(chatID, "", c.me.Id, 1)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -575,10 +581,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// send without sound
|
// send without sound
|
||||||
case "silent":
|
case "silent":
|
||||||
if len(args) < 1 {
|
|
||||||
return "Not enough arguments", true
|
|
||||||
}
|
|
||||||
|
|
||||||
content := c.PrepareOutgoingMessageContent(rawCmdArguments(cmdline, 0))
|
content := c.PrepareOutgoingMessageContent(rawCmdArguments(cmdline, 0))
|
||||||
|
|
||||||
if content != nil {
|
if content != nil {
|
||||||
|
@ -597,10 +599,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// schedule a message to timestamp or to going online
|
// schedule a message to timestamp or to going online
|
||||||
case "schedule":
|
case "schedule":
|
||||||
if len(args) < 2 {
|
|
||||||
return "Not enough arguments", true
|
|
||||||
}
|
|
||||||
|
|
||||||
var state client.MessageSchedulingState
|
var state client.MessageSchedulingState
|
||||||
var result string
|
var result string
|
||||||
due := args[0]
|
due := args[0]
|
||||||
|
@ -677,10 +675,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// forward a message to chat
|
// forward a message to chat
|
||||||
case "forward":
|
case "forward":
|
||||||
if len(args) < 2 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
messageId, err := strconv.ParseInt(args[0], 10, 64)
|
messageId, err := strconv.ParseInt(args[0], 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "Cannot parse message ID", true
|
return "Cannot parse message ID", true
|
||||||
|
@ -742,10 +736,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// create group chat with current user
|
// create group chat with current user
|
||||||
case "group":
|
case "group":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := c.client.CreateNewBasicGroupChat(&client.CreateNewBasicGroupChatRequest{
|
_, err := c.client.CreateNewBasicGroupChat(&client.CreateNewBasicGroupChatRequest{
|
||||||
UserIds: []int64{chatID},
|
UserIds: []int64{chatID},
|
||||||
Title: args[0],
|
Title: args[0],
|
||||||
|
@ -773,10 +763,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// invite @username to current groupchat
|
// invite @username to current groupchat
|
||||||
case "invite":
|
case "invite":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
contact, _, err := c.GetContactByUsername(args[0])
|
contact, _, err := c.GetContactByUsername(args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error(), true
|
return err.Error(), true
|
||||||
|
@ -801,10 +787,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
return link.InviteLink, true
|
return link.InviteLink, true
|
||||||
// kick @username from current group chat
|
// kick @username from current group chat
|
||||||
case "kick":
|
case "kick":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
contact, _, err := c.GetContactByUsername(args[0])
|
contact, _, err := c.GetContactByUsername(args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error(), true
|
return err.Error(), true
|
||||||
|
@ -820,10 +802,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// mute @username [n hours]
|
// mute @username [n hours]
|
||||||
case "mute":
|
case "mute":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
contact, _, err := c.GetContactByUsername(args[0])
|
contact, _, err := c.GetContactByUsername(args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error(), true
|
return err.Error(), true
|
||||||
|
@ -851,10 +829,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// unmute @username
|
// unmute @username
|
||||||
case "unmute":
|
case "unmute":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
contact, _, err := c.GetContactByUsername(args[0])
|
contact, _, err := c.GetContactByUsername(args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error(), true
|
return err.Error(), true
|
||||||
|
@ -874,10 +848,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// ban @username from current chat [for N hours]
|
// ban @username from current chat [for N hours]
|
||||||
case "ban":
|
case "ban":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
contact, _, err := c.GetContactByUsername(args[0])
|
contact, _, err := c.GetContactByUsername(args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error(), true
|
return err.Error(), true
|
||||||
|
@ -903,10 +873,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// unban @username
|
// unban @username
|
||||||
case "unban":
|
case "unban":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
contact, _, err := c.GetContactByUsername(args[0])
|
contact, _, err := c.GetContactByUsername(args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error(), true
|
return err.Error(), true
|
||||||
|
@ -922,10 +888,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
// promote @username to admin
|
// promote @username to admin
|
||||||
case "promote":
|
case "promote":
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments, true
|
|
||||||
}
|
|
||||||
|
|
||||||
contact, _, err := c.GetContactByUsername(args[0])
|
contact, _, err := c.GetContactByUsername(args[0])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err.Error(), true
|
return err.Error(), true
|
||||||
|
@ -1133,10 +1095,6 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) cmdAdd(args []string) string {
|
func (c *Client) cmdAdd(args []string) string {
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments
|
|
||||||
}
|
|
||||||
|
|
||||||
chat, err := c.client.SearchPublicChat(&client.SearchPublicChatRequest{
|
chat, err := c.client.SearchPublicChat(&client.SearchPublicChatRequest{
|
||||||
Username: args[0],
|
Username: args[0],
|
||||||
})
|
})
|
||||||
|
@ -1153,10 +1111,6 @@ func (c *Client) cmdAdd(args []string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) cmdJoin(args []string) string {
|
func (c *Client) cmdJoin(args []string) string {
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments
|
|
||||||
}
|
|
||||||
|
|
||||||
if strings.HasPrefix(args[0], "@") {
|
if strings.HasPrefix(args[0], "@") {
|
||||||
chat, err := c.client.SearchPublicChat(&client.SearchPublicChatRequest{
|
chat, err := c.client.SearchPublicChat(&client.SearchPublicChatRequest{
|
||||||
Username: args[0],
|
Username: args[0],
|
||||||
|
@ -1186,10 +1140,6 @@ func (c *Client) cmdJoin(args []string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) cmdSupergroup(args []string, cmdline string) string {
|
func (c *Client) cmdSupergroup(args []string, cmdline string) string {
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := c.client.CreateNewSupergroupChat(&client.CreateNewSupergroupChatRequest{
|
_, err := c.client.CreateNewSupergroupChat(&client.CreateNewSupergroupChatRequest{
|
||||||
Title: args[0],
|
Title: args[0],
|
||||||
Description: rawCmdArguments(cmdline, 1),
|
Description: rawCmdArguments(cmdline, 1),
|
||||||
|
@ -1202,10 +1152,6 @@ func (c *Client) cmdSupergroup(args []string, cmdline string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) cmdChannel(args []string, cmdline string) string {
|
func (c *Client) cmdChannel(args []string, cmdline string) string {
|
||||||
if len(args) < 1 {
|
|
||||||
return notEnoughArguments
|
|
||||||
}
|
|
||||||
|
|
||||||
_, err := c.client.CreateNewSupergroupChat(&client.CreateNewSupergroupChatRequest{
|
_, err := c.client.CreateNewSupergroupChat(&client.CreateNewSupergroupChatRequest{
|
||||||
Title: args[0],
|
Title: args[0],
|
||||||
Description: rawCmdArguments(cmdline, 1),
|
Description: rawCmdArguments(cmdline, 1),
|
||||||
|
|
|
@ -490,17 +490,25 @@ func handleGetDiscoInfo(s xmpp.Sender, iq *stanza.IQ, di *stanza.DiscoInfo) {
|
||||||
|
|
||||||
disco := answer.DiscoInfo()
|
disco := answer.DiscoInfo()
|
||||||
_, ok := toToID(iq.To)
|
_, ok := toToID(iq.To)
|
||||||
|
if di.Node == "" {
|
||||||
if ok {
|
if ok {
|
||||||
disco.AddIdentity("", "account", "registered")
|
disco.AddIdentity("", "account", "registered")
|
||||||
disco.AddFeatures(stanza.NSMsgChatMarkers)
|
disco.AddFeatures(stanza.NSMsgChatMarkers)
|
||||||
disco.AddFeatures(stanza.NSMsgReceipts)
|
disco.AddFeatures(stanza.NSMsgReceipts)
|
||||||
} else {
|
} else {
|
||||||
if di.Node == "" {
|
|
||||||
disco.AddIdentity("Telegram Gateway", "gateway", "telegram")
|
disco.AddIdentity("Telegram Gateway", "gateway", "telegram")
|
||||||
disco.AddFeatures("jabber:iq:register")
|
disco.AddFeatures("jabber:iq:register")
|
||||||
|
}
|
||||||
disco.AddFeatures(NSCommand)
|
disco.AddFeatures(NSCommand)
|
||||||
} else {
|
} else {
|
||||||
for name, command := range telegram.GetCommands(telegram.CommandTypeTransport) {
|
var cmdType telegram.CommandType
|
||||||
|
if ok {
|
||||||
|
cmdType = telegram.CommandTypeChat
|
||||||
|
} else {
|
||||||
|
cmdType = telegram.CommandTypeTransport
|
||||||
|
}
|
||||||
|
|
||||||
|
for name, command := range telegram.GetCommands(cmdType) {
|
||||||
if di.Node == name {
|
if di.Node == name {
|
||||||
answer.Payload = di
|
answer.Payload = di
|
||||||
di.AddIdentity(telegram.CommandToHelpString(name, command), "automation", "command-node")
|
di.AddIdentity(telegram.CommandToHelpString(name, command), "automation", "command-node")
|
||||||
|
@ -509,7 +517,6 @@ func handleGetDiscoInfo(s xmpp.Sender, iq *stanza.IQ, di *stanza.DiscoInfo) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
answer.Payload = disco
|
answer.Payload = disco
|
||||||
|
|
||||||
log.Debugf("%#v", answer)
|
log.Debugf("%#v", answer)
|
||||||
|
@ -539,17 +546,23 @@ func handleGetDiscoItems(s xmpp.Sender, iq *stanza.IQ, di *stanza.DiscoItems) {
|
||||||
log.Debugf("discoItems: %#v", di)
|
log.Debugf("discoItems: %#v", di)
|
||||||
|
|
||||||
_, ok := toToID(iq.To)
|
_, ok := toToID(iq.To)
|
||||||
if !ok {
|
|
||||||
commands := telegram.GetCommands(telegram.CommandTypeTransport)
|
|
||||||
if di.Node == NSCommand {
|
if di.Node == NSCommand {
|
||||||
answer.Payload = di
|
answer.Payload = di
|
||||||
|
|
||||||
|
var cmdType telegram.CommandType
|
||||||
|
if ok {
|
||||||
|
cmdType = telegram.CommandTypeChat
|
||||||
|
} else {
|
||||||
|
cmdType = telegram.CommandTypeTransport
|
||||||
|
}
|
||||||
|
|
||||||
|
commands := telegram.GetCommands(cmdType)
|
||||||
for name, command := range commands {
|
for name, command := range commands {
|
||||||
di.AddItem(iq.To, name, telegram.CommandToHelpString(name, command))
|
di.AddItem(iq.To, name, telegram.CommandToHelpString(name, command))
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
answer.Payload = answer.DiscoItems()
|
answer.Payload = answer.DiscoItems()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
component, ok := s.(*xmpp.Component)
|
component, ok := s.(*xmpp.Component)
|
||||||
if !ok {
|
if !ok {
|
||||||
|
@ -706,11 +719,16 @@ func handleSetQueryCommand(s xmpp.Sender, iq *stanza.IQ, command *stanza.Command
|
||||||
if !ok {
|
if !ok {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
_, toOk := toToID(iq.To)
|
toId, toOk := toToID(iq.To)
|
||||||
|
|
||||||
var cmdString string
|
var cmdString string
|
||||||
if !toOk {
|
var cmdType telegram.CommandType
|
||||||
form, formOk := command.CommandElement.(*stanza.Form)
|
form, formOk := command.CommandElement.(*stanza.Form)
|
||||||
|
if toOk {
|
||||||
|
cmdType = telegram.CommandTypeChat
|
||||||
|
} else {
|
||||||
|
cmdType = telegram.CommandTypeTransport
|
||||||
|
}
|
||||||
if formOk {
|
if formOk {
|
||||||
// just for the case the client messed the order somehow
|
// just for the case the client messed the order somehow
|
||||||
sort.Slice(form.Fields, func(i int, j int) bool {
|
sort.Slice(form.Fields, func(i int, j int) bool {
|
||||||
|
@ -737,8 +755,8 @@ func handleSetQueryCommand(s xmpp.Sender, iq *stanza.IQ, command *stanza.Command
|
||||||
cmdString = cmd.String()
|
cmdString = cmd.String()
|
||||||
} else {
|
} else {
|
||||||
if command.Action == "" || command.Action == stanza.CommandActionExecute {
|
if command.Action == "" || command.Action == stanza.CommandActionExecute {
|
||||||
cmd, ok := telegram.GetCommand(telegram.CommandTypeTransport, command.Node)
|
cmd, ok := telegram.GetCommand(cmdType, command.Node)
|
||||||
if ok && cmd.RequiredArgs > 0 {
|
if ok && len(cmd.Arguments) > 0 {
|
||||||
var fields []*stanza.Field
|
var fields []*stanza.Field
|
||||||
for i, arg := range cmd.Arguments {
|
for i, arg := range cmd.Arguments {
|
||||||
fields = append(fields, &stanza.Field{
|
fields = append(fields, &stanza.Field{
|
||||||
|
@ -768,7 +786,6 @@ func handleSetQueryCommand(s xmpp.Sender, iq *stanza.IQ, command *stanza.Command
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
if cmdString != "" {
|
if cmdString != "" {
|
||||||
session, ok := sessions[bare]
|
session, ok := sessions[bare]
|
||||||
|
@ -776,7 +793,12 @@ func handleSetQueryCommand(s xmpp.Sender, iq *stanza.IQ, command *stanza.Command
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
response := session.ProcessTransportCommand(cmdString, resource)
|
var response string
|
||||||
|
if toOk {
|
||||||
|
response, _ = session.ProcessChatCommand(toId, cmdString)
|
||||||
|
} else {
|
||||||
|
response = session.ProcessTransportCommand(cmdString, resource)
|
||||||
|
}
|
||||||
|
|
||||||
answer.Payload = &stanza.Command{
|
answer.Payload = &stanza.Command{
|
||||||
SessionId: command.Node,
|
SessionId: command.Node,
|
||||||
|
|
Loading…
Reference in a new issue