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>
106 lines
3.3 KiB
Go
106 lines
3.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/mlog"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
"github.com/mattermost/mattermost/server/v8/channels/store"
|
|
)
|
|
|
|
func (a *App) markAdminOnboardingComplete(rctx request.CTX) *model.AppError {
|
|
firstAdminCompleteSetupObj := model.System{
|
|
Name: model.SystemFirstAdminSetupComplete,
|
|
Value: "true",
|
|
}
|
|
|
|
if err := a.Srv().Store().System().SaveOrUpdate(&firstAdminCompleteSetupObj); err != nil {
|
|
return model.NewAppError("setFirstAdminCompleteSetup", "api.error_set_first_admin_complete_setup", nil, "", http.StatusInternalServerError).Wrap(err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (a *App) CompleteOnboarding(rctx request.CTX, request *model.CompleteOnboardingRequest) *model.AppError {
|
|
isCloud := a.Srv().License() != nil && *a.Srv().License().Features.Cloud
|
|
|
|
if !isCloud && request.Organization == "" {
|
|
rctx.Logger().Error("No organization name provided for self hosted onboarding")
|
|
return model.NewAppError("CompleteOnboarding", "api.error_no_organization_name_provided_for_self_hosted_onboarding", nil, "", http.StatusBadRequest)
|
|
}
|
|
|
|
if request.Organization != "" {
|
|
err := a.Srv().Store().System().SaveOrUpdate(&model.System{
|
|
Name: model.SystemOrganizationName,
|
|
Value: request.Organization,
|
|
})
|
|
if err != nil {
|
|
rctx.Logger().Error("failed to save organization name", mlog.Err(err))
|
|
}
|
|
}
|
|
|
|
pluginsEnvironment := a.Channels().GetPluginsEnvironment()
|
|
if pluginsEnvironment == nil {
|
|
return a.markAdminOnboardingComplete(rctx)
|
|
}
|
|
|
|
pluginContext := pluginContext(rctx)
|
|
|
|
for _, pluginID := range request.InstallPlugins {
|
|
go func(id string) {
|
|
installRequest := &model.InstallMarketplacePluginRequest{
|
|
Id: id,
|
|
}
|
|
_, appErr := a.Channels().InstallMarketplacePlugin(installRequest)
|
|
if appErr != nil {
|
|
rctx.Logger().Error("Failed to install plugin for onboarding", mlog.String("id", id), mlog.Err(appErr))
|
|
return
|
|
}
|
|
|
|
appErr = a.EnablePlugin(id)
|
|
if appErr != nil {
|
|
rctx.Logger().Error("Failed to enable plugin for onboarding", mlog.String("id", id), mlog.Err(appErr))
|
|
return
|
|
}
|
|
|
|
hooks, err := a.ch.HooksForPlugin(id)
|
|
if err != nil {
|
|
rctx.Logger().Warn("Getting hooks for plugin failed", mlog.String("plugin_id", id), mlog.Err(err))
|
|
return
|
|
}
|
|
|
|
event := model.OnInstallEvent{
|
|
UserId: rctx.Session().UserId,
|
|
}
|
|
if err = hooks.OnInstall(pluginContext, event); err != nil {
|
|
rctx.Logger().Error("Plugin OnInstall hook failed", mlog.String("plugin_id", id), mlog.Err(err))
|
|
}
|
|
}(pluginID)
|
|
}
|
|
|
|
return a.markAdminOnboardingComplete(rctx)
|
|
}
|
|
|
|
func (a *App) GetOnboarding() (*model.System, *model.AppError) {
|
|
firstAdminCompleteSetupObj, err := a.Srv().Store().System().GetByName(model.SystemFirstAdminSetupComplete)
|
|
if err != nil {
|
|
var nfErr *store.ErrNotFound
|
|
switch {
|
|
case errors.As(err, &nfErr):
|
|
return &model.System{
|
|
Name: model.SystemFirstAdminSetupComplete,
|
|
Value: "false",
|
|
}, nil
|
|
default:
|
|
return nil, model.NewAppError("getFirstAdminCompleteSetup", "api.error_get_first_admin_complete_setup", nil, "", http.StatusInternalServerError).Wrap(err)
|
|
}
|
|
}
|
|
return firstAdminCompleteSetupObj, nil
|
|
}
|