* extracting i18n functionality to i18n core library * Removing utils.T * Adding documentation and changing one function name for better explanation * Changing other missing utils.T * Adding license string * Renaming corelibs to pkg * Renaming corelibs to pkg (moving directory) * Renaming from pkg to shared * Fixing bodyPage.Html casing * Fixing merges * Fixing merge problem * Fixing tests
46 строки
1.2 KiB
Go
46 строки
1.2 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package slashcommands
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/mattermost/mattermost-server/v5/app"
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
"github.com/mattermost/mattermost-server/v5/shared/i18n"
|
|
)
|
|
|
|
type CodeProvider struct {
|
|
}
|
|
|
|
const (
|
|
CmdCode = "code"
|
|
)
|
|
|
|
func init() {
|
|
app.RegisterCommandProvider(&CodeProvider{})
|
|
}
|
|
|
|
func (*CodeProvider) GetTrigger() string {
|
|
return CmdCode
|
|
}
|
|
|
|
func (*CodeProvider) GetCommand(a *app.App, T i18n.TranslateFunc) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CmdCode,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: T("api.command_code.desc"),
|
|
AutoCompleteHint: T("api.command_code.hint"),
|
|
DisplayName: T("api.command_code.name"),
|
|
}
|
|
}
|
|
|
|
func (*CodeProvider) DoCommand(a *app.App, args *model.CommandArgs, message string) *model.CommandResponse {
|
|
if message == "" {
|
|
return &model.CommandResponse{Text: args.T("api.command_code.message.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
|
}
|
|
rmsg := " " + strings.Join(strings.Split(message, "\n"), "\n ")
|
|
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_IN_CHANNEL, Text: rmsg, SkipSlackParsing: true}
|
|
}
|