mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
This change is being made to address an issue where the go-i18n translation library would result in partial-translations when a given language dictionary was missing a given plural keyword. The improvement made here leads the translation library to try an 'other' keyword lookup if the first plural keyword fails to have a value. This change was not accepted upstream due to concern regarding changing the behavior, so we are using a fork at this time to address the issue.
81 lines
2.6 KiB
Go
81 lines
2.6 KiB
Go
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"strings"
|
|
|
|
goi18n "github.com/mattermost/go-i18n/i18n"
|
|
|
|
"github.com/mattermost/mattermost-server/model"
|
|
)
|
|
|
|
type JoinProvider struct {
|
|
}
|
|
|
|
const (
|
|
CMD_JOIN = "join"
|
|
)
|
|
|
|
func init() {
|
|
RegisterCommandProvider(&JoinProvider{})
|
|
}
|
|
|
|
func (me *JoinProvider) GetTrigger() string {
|
|
return CMD_JOIN
|
|
}
|
|
|
|
func (me *JoinProvider) GetCommand(a *App, T goi18n.TranslateFunc) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CMD_JOIN,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: T("api.command_join.desc"),
|
|
AutoCompleteHint: T("api.command_join.hint"),
|
|
DisplayName: T("api.command_join.name"),
|
|
}
|
|
}
|
|
|
|
func (me *JoinProvider) DoCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse {
|
|
channelName := message
|
|
|
|
if strings.HasPrefix(message, "~") {
|
|
channelName = message[1:]
|
|
}
|
|
|
|
result := <-a.Srv.Store.Channel().GetByName(args.TeamId, channelName, true)
|
|
if result.Err != nil {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.list.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
|
}
|
|
|
|
channel := result.Data.(*model.Channel)
|
|
|
|
if channel.Name != channelName {
|
|
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: args.T("api.command_join.missing.app_error")}
|
|
}
|
|
|
|
switch channel.Type {
|
|
case model.CHANNEL_OPEN:
|
|
if !a.SessionHasPermissionToChannel(args.Session, channel.Id, model.PERMISSION_JOIN_PUBLIC_CHANNELS) {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
|
}
|
|
case model.CHANNEL_PRIVATE:
|
|
if !a.SessionHasPermissionToChannel(args.Session, channel.Id, model.PERMISSION_READ_CHANNEL) {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
|
}
|
|
default:
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
|
}
|
|
|
|
if err := a.JoinChannel(channel, args.UserId); err != nil {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
|
}
|
|
|
|
team, err := a.GetTeam(channel.TeamId)
|
|
if err != nil {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
|
}
|
|
|
|
return &model.CommandResponse{GotoLocation: args.SiteURL + "/" + team.Name + "/channels/" + channel.Name}
|
|
}
|