github.com/vnforks/kid/v5@v5.22.1-0.20200408055009-b89d99c65676/app/command_me.go (about)

     1  // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
     2  // See LICENSE.txt for license information.
     3  
     4  package app
     5  
     6  import (
     7  	goi18n "github.com/mattermost/go-i18n/i18n"
     8  	"github.com/vnforks/kid/v5/model"
     9  )
    10  
    11  type MeProvider struct {
    12  }
    13  
    14  const (
    15  	CMD_ME = "me"
    16  )
    17  
    18  func init() {
    19  	RegisterCommandProvider(&MeProvider{})
    20  }
    21  
    22  func (me *MeProvider) GetTrigger() string {
    23  	return CMD_ME
    24  }
    25  
    26  func (me *MeProvider) GetCommand(a *App, T goi18n.TranslateFunc) *model.Command {
    27  	return &model.Command{
    28  		Trigger:          CMD_ME,
    29  		AutoComplete:     true,
    30  		AutoCompleteDesc: T("api.command_me.desc"),
    31  		AutoCompleteHint: T("api.command_me.hint"),
    32  		DisplayName:      T("api.command_me.name"),
    33  	}
    34  }
    35  
    36  func (me *MeProvider) DoCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse {
    37  	return &model.CommandResponse{
    38  		ResponseType: model.COMMAND_RESPONSE_TYPE_IN_CLASS,
    39  		Type:         model.POST_ME,
    40  		Text:         "*" + message + "*",
    41  		Props: model.StringInterface{
    42  			"message": message,
    43  		},
    44  	}
    45  }