github.com/ashishbhate/mattermost-server@v5.11.1+incompatible/app/command_shrug.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 ShrugProvider struct {
    12  }
    13  
    14  const (
    15  	CMD_SHRUG = "shrug"
    16  )
    17  
    18  func init() {
    19  	RegisterCommandProvider(&ShrugProvider{})
    20  }
    21  
    22  func (me *ShrugProvider) GetTrigger() string {
    23  	return CMD_SHRUG
    24  }
    25  
    26  func (me *ShrugProvider) GetCommand(a *App, T goi18n.TranslateFunc) *model.Command {
    27  	return &model.Command{
    28  		Trigger:          CMD_SHRUG,
    29  		AutoComplete:     true,
    30  		AutoCompleteDesc: T("api.command_shrug.desc"),
    31  		AutoCompleteHint: T("api.command_shrug.hint"),
    32  		DisplayName:      T("api.command_shrug.name"),
    33  	}
    34  }
    35  
    36  func (me *ShrugProvider) DoCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse {
    37  	rmsg := `¯\\\_(ツ)\_/¯`
    38  	if len(message) > 0 {
    39  		rmsg = message + " " + rmsg
    40  	}
    41  
    42  	return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_IN_CHANNEL, Text: rmsg}
    43  }