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>
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type GuestsInvite struct {
|
|
Emails []string `json:"emails"`
|
|
Channels []string `json:"channels"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
func (i *GuestsInvite) Auditable() map[string]any {
|
|
return map[string]any{
|
|
"emails": i.Emails,
|
|
"channels": i.Channels,
|
|
}
|
|
}
|
|
|
|
// IsValid validates the user and returns an error if it isn't configured
|
|
// correctly.
|
|
func (i *GuestsInvite) IsValid() *AppError {
|
|
if len(i.Emails) == 0 {
|
|
return NewAppError("GuestsInvite.IsValid", "model.guest.is_valid.emails.app_error", nil, "", http.StatusBadRequest)
|
|
}
|
|
|
|
for _, email := range i.Emails {
|
|
if len(email) > UserEmailMaxLength || email == "" || !IsValidEmail(email) {
|
|
return NewAppError("GuestsInvite.IsValid", "model.guest.is_valid.email.app_error", nil, "email="+email, http.StatusBadRequest)
|
|
}
|
|
}
|
|
|
|
if len(i.Channels) == 0 {
|
|
return NewAppError("GuestsInvite.IsValid", "model.guest.is_valid.channels.app_error", nil, "", http.StatusBadRequest)
|
|
}
|
|
|
|
for _, channel := range i.Channels {
|
|
if len(channel) != 26 {
|
|
return NewAppError("GuestsInvite.IsValid", "model.guest.is_valid.channel.app_error", nil, "channel="+channel, http.StatusBadRequest)
|
|
}
|
|
}
|
|
return nil
|
|
}
|