// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved. // See License.txt for license information. package api import ( "github.com/mattermost/platform/app" "github.com/mattermost/platform/model" ) type JoinProvider struct { } const ( CMD_JOIN = "join" ) func init() { RegisterCommandProvider(&JoinProvider{}) } func (me *JoinProvider) GetTrigger() string { return CMD_JOIN } func (me *JoinProvider) GetCommand(c *Context) *model.Command { return &model.Command{ Trigger: CMD_JOIN, AutoComplete: true, AutoCompleteDesc: c.T("api.command_join.desc"), AutoCompleteHint: c.T("api.command_join.hint"), DisplayName: c.T("api.command_join.name"), } } func (me *JoinProvider) DoCommand(c *Context, args *model.CommandArgs, message string) *model.CommandResponse { if result := <-app.Srv.Store.Channel().GetByName(c.TeamId, message, true); result.Err != nil { return &model.CommandResponse{Text: c.T("api.command_join.list.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL} } else { channel := result.Data.(*model.Channel) if channel.Name == message { if channel.Type != model.CHANNEL_OPEN { return &model.CommandResponse{Text: c.T("api.command_join.fail.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL} } if err := app.JoinChannel(channel, c.Session.UserId); err != nil { return &model.CommandResponse{Text: c.T("api.command_join.fail.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL} } return &model.CommandResponse{GotoLocation: c.GetTeamURL() + "/channels/" + channel.Name, Text: c.T("api.command_join.success"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL} } } return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: c.T("api.command_join.missing.app_error")} }