/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/chat/commands/msg.go
51 строка
1 KB
zoom-ua
gofumpt (#28710)
17 дек 2025, 17:16
Не верифицирован
17 дек 2025, 17:16
cda510b
Код
Авторство
О чём код?
package commands import ( "context" "strings" "github.com/keybase/client/go/chat/globals" "github.com/keybase/client/go/protocol/chat1" "github.com/keybase/client/go/protocol/gregor1" ) type Msg struct { *baseCommand } func NewMsg(g *globals.Context) *Msg { return &Msg{ baseCommand: newBaseCommand(g, "msg", "<conversation> <message>", "Send a message to a conversation", false, "dm"), } } func (d *Msg) Execute(ctx context.Context, uid gregor1.UID, convID chat1.ConversationID, tlfName, text string, replyTo *chat1.MessageID, ) (err error) { defer d.Trace(ctx, &err, "Execute")() if !d.Match(ctx, text) { return ErrInvalidCommand } defer func() { if err != nil { err := d.getChatUI().ChatCommandStatus(ctx, convID, "Failed to send message", chat1.UICommandStatusDisplayTyp_ERROR, nil) if err != nil { d.Debug(ctx, "Execute: error with command status: %+v", err) } } }() toks, err := d.tokenize(text, 3) if err != nil { return err } conv, err := getConvByName(ctx, d.G(), uid, toks[1]) if err != nil { return err } text = strings.Join(toks[2:], " ") _, err = d.G().ChatHelper.SendTextByIDNonblock(ctx, conv.GetConvID(), conv.Info.TlfName, text, nil, replyTo) return err }