Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
80 lines
2.1 KiB
Go
80 lines
2.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package slashcommands
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
"github.com/mattermost/mattermost/server/v8/channels/app"
|
|
"github.com/mattermost/mattermost/server/v8/channels/utils"
|
|
)
|
|
|
|
type AutoChannelCreator struct {
|
|
a *app.App
|
|
userID string
|
|
team *model.Team
|
|
Fuzzy bool
|
|
DisplayNameLen utils.Range
|
|
DisplayNameCharset string
|
|
NameLen utils.Range
|
|
NameCharset string
|
|
ChannelType model.ChannelType
|
|
CreateTime int64
|
|
}
|
|
|
|
func NewAutoChannelCreator(a *app.App, team *model.Team, userID string) *AutoChannelCreator {
|
|
return &AutoChannelCreator{
|
|
a: a,
|
|
team: team,
|
|
userID: userID,
|
|
Fuzzy: false,
|
|
DisplayNameLen: ChannelDisplayNameLen,
|
|
DisplayNameCharset: utils.ALPHANUMERIC,
|
|
NameLen: ChannelNameLen,
|
|
NameCharset: utils.LOWERCASE,
|
|
ChannelType: ChannelType,
|
|
CreateTime: 0,
|
|
}
|
|
}
|
|
|
|
func (cfg *AutoChannelCreator) createRandomChannel(rctx request.CTX) (*model.Channel, error) {
|
|
var displayName string
|
|
if cfg.Fuzzy {
|
|
displayName = utils.FuzzName()
|
|
} else {
|
|
displayName = utils.RandomName(cfg.NameLen, cfg.NameCharset)
|
|
}
|
|
name := utils.RandomName(cfg.NameLen, cfg.NameCharset)
|
|
|
|
channel := &model.Channel{
|
|
TeamId: cfg.team.Id,
|
|
DisplayName: displayName,
|
|
Name: name,
|
|
Type: cfg.ChannelType,
|
|
CreatorId: cfg.userID,
|
|
CreateAt: cfg.CreateTime,
|
|
}
|
|
|
|
channel, err := cfg.a.CreateChannel(rctx, channel, true)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return channel, nil
|
|
}
|
|
|
|
func (cfg *AutoChannelCreator) CreateTestChannels(rctx request.CTX, num utils.Range) ([]*model.Channel, error) {
|
|
numChannels := utils.RandIntFromRange(num)
|
|
channels := make([]*model.Channel, numChannels)
|
|
|
|
for i := range numChannels {
|
|
var err error
|
|
channels[i], err = cfg.createRandomChannel(rctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return channels, nil
|
|
}
|