* add request context * move initialialization to server * use app interface instead of global app functions * remove app context from webconn * cleanup * remove duplicated services * move context to separate package * remove finalize init method and move content to NewServer function * restart workers and schedulers after adding license for tests * reflect review comments Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
42 строки
1.1 KiB
Go
42 строки
1.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package slashcommands
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost-server/v5/app"
|
|
"github.com/mattermost/mattermost-server/v5/app/request"
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
"github.com/mattermost/mattermost-server/v5/shared/i18n"
|
|
)
|
|
|
|
type AwayProvider struct {
|
|
}
|
|
|
|
const (
|
|
CmdAway = "away"
|
|
)
|
|
|
|
func init() {
|
|
app.RegisterCommandProvider(&AwayProvider{})
|
|
}
|
|
|
|
func (*AwayProvider) GetTrigger() string {
|
|
return CmdAway
|
|
}
|
|
|
|
func (*AwayProvider) GetCommand(a *app.App, T i18n.TranslateFunc) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CmdAway,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: T("api.command_away.desc"),
|
|
DisplayName: T("api.command_away.name"),
|
|
}
|
|
}
|
|
|
|
func (*AwayProvider) DoCommand(a *app.App, c *request.Context, args *model.CommandArgs, message string) *model.CommandResponse {
|
|
a.SetStatusAwayIfNeeded(args.UserId, true)
|
|
|
|
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command_away.success")}
|
|
}
|