github.com/coincircle/mattermost-server@v4.8.1-0.20180321182714-9d701c704416+incompatible/app/command_away.go (about) 1 // Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. 2 // See License.txt for license information. 3 4 package app 5 6 import ( 7 "github.com/mattermost/mattermost-server/model" 8 goi18n "github.com/nicksnyder/go-i18n/i18n" 9 ) 10 11 type AwayProvider struct { 12 } 13 14 const ( 15 CMD_AWAY = "away" 16 ) 17 18 func init() { 19 RegisterCommandProvider(&AwayProvider{}) 20 } 21 22 func (me *AwayProvider) GetTrigger() string { 23 return CMD_AWAY 24 } 25 26 func (me *AwayProvider) GetCommand(a *App, T goi18n.TranslateFunc) *model.Command { 27 return &model.Command{ 28 Trigger: CMD_AWAY, 29 AutoComplete: true, 30 AutoCompleteDesc: T("api.command_away.desc"), 31 DisplayName: T("api.command_away.name"), 32 } 33 } 34 35 func (me *AwayProvider) DoCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse { 36 a.SetStatusAwayIfNeeded(args.UserId, true) 37 38 return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command_away.success")} 39 }