mirror of
https://github.com/mattermost/mattermost.git
synced 2026-03-01 04:41:02 -05:00
* Standardize request.CTX parameter naming to rctx - Migrate 886 request.CTX parameters across 147 files to use consistent 'rctx' naming - Updated function signatures from 'c', 'ctx', and 'cancelContext' to 'rctx' - Updated function bodies to reference the new parameter names - Preserved underscore parameters unchanged as they are unused - Fixed method receiver context issue in store.go 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Use request.CTX interface in batch worker * Manual fixes * Fix parameter naming * Add linter check --------- Co-authored-by: Claude <noreply@anthropic.com>
79 lines
2.7 KiB
Go
79 lines
2.7 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package slashcommands
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/i18n"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
"github.com/mattermost/mattermost/server/v8/channels/app"
|
|
)
|
|
|
|
type JoinProvider struct {
|
|
}
|
|
|
|
const (
|
|
CmdJoin = "join"
|
|
)
|
|
|
|
func init() {
|
|
app.RegisterCommandProvider(&JoinProvider{})
|
|
}
|
|
|
|
func (*JoinProvider) GetTrigger() string {
|
|
return CmdJoin
|
|
}
|
|
|
|
func (*JoinProvider) GetCommand(a *app.App, T i18n.TranslateFunc) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CmdJoin,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: T("api.command_join.desc"),
|
|
AutoCompleteHint: T("api.command_join.hint"),
|
|
DisplayName: T("api.command_join.name"),
|
|
}
|
|
}
|
|
|
|
func (*JoinProvider) DoCommand(a *app.App, rctx request.CTX, args *model.CommandArgs, message string) *model.CommandResponse {
|
|
channelName := strings.ToLower(message)
|
|
|
|
if strings.HasPrefix(message, "~") {
|
|
channelName = message[1:]
|
|
}
|
|
|
|
channel, err := a.Srv().Store().Channel().GetByName(args.TeamId, channelName, true)
|
|
if err != nil {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.list.app_error"), ResponseType: model.CommandResponseTypeEphemeral}
|
|
}
|
|
|
|
if channel.Name != channelName {
|
|
return &model.CommandResponse{ResponseType: model.CommandResponseTypeEphemeral, Text: args.T("api.command_join.missing.app_error")}
|
|
}
|
|
|
|
switch channel.Type {
|
|
case model.ChannelTypeOpen:
|
|
if !a.HasPermissionToChannel(rctx, args.UserId, channel.Id, model.PermissionJoinPublicChannels) {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.CommandResponseTypeEphemeral}
|
|
}
|
|
case model.ChannelTypePrivate:
|
|
if !a.HasPermissionToChannel(rctx, args.UserId, channel.Id, model.PermissionReadChannel) {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.CommandResponseTypeEphemeral}
|
|
}
|
|
default:
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.CommandResponseTypeEphemeral}
|
|
}
|
|
|
|
if appErr := a.JoinChannel(rctx, channel, args.UserId); appErr != nil {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.CommandResponseTypeEphemeral}
|
|
}
|
|
|
|
team, appErr := a.GetTeam(channel.TeamId)
|
|
if appErr != nil {
|
|
return &model.CommandResponse{Text: args.T("api.command_join.fail.app_error"), ResponseType: model.CommandResponseTypeEphemeral}
|
|
}
|
|
|
|
return &model.CommandResponse{GotoLocation: args.SiteURL + "/" + team.Name + "/channels/" + channel.Name}
|
|
}
|