* model -> public/model * plugin -> public/plugin * public/model/utils -> public/utils * platform/shared/mlog -> public/shared/mlog * platform/shared/i18n -> public/shared/i18n * platform/shared/markdown -> public/shared/markdown * platform/services/timezones -> public/shared/timezones * channels/einterfaces -> einterfaces * expose public/ submodule * go mod tidy * .github: cache-dependency-path, setup-go-work * modules-tidy for public/ too * remove old gomodtidy
55 строки
1.8 KiB
Go
55 строки
1.8 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package commands
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/mattermost/mattermost-server/server/public/model"
|
|
"github.com/mattermost/mattermost-server/server/public/shared/i18n"
|
|
"github.com/mattermost/mattermost-server/server/v8/channels/app"
|
|
"github.com/mattermost/mattermost-server/server/v8/channels/app/request"
|
|
"github.com/mattermost/mattermost-server/server/v8/channels/utils"
|
|
"github.com/mattermost/mattermost-server/server/v8/config"
|
|
)
|
|
|
|
func initDBCommandContextCobra(command *cobra.Command, readOnlyConfigStore bool, options ...app.Option) (*app.App, error) {
|
|
a, err := initDBCommandContext(getConfigDSN(command, config.GetEnvironment()), readOnlyConfigStore, options...)
|
|
if err != nil {
|
|
// Returning an error just prints the usage message, so actually panic
|
|
panic(err)
|
|
}
|
|
|
|
a.InitPlugins(request.EmptyContext(a.Log()), *a.Config().PluginSettings.Directory, *a.Config().PluginSettings.ClientDirectory)
|
|
a.DoAppMigrations()
|
|
|
|
return a, nil
|
|
}
|
|
|
|
func InitDBCommandContextCobra(command *cobra.Command, options ...app.Option) (*app.App, error) {
|
|
return initDBCommandContextCobra(command, true, options...)
|
|
}
|
|
|
|
func initDBCommandContext(configDSN string, readOnlyConfigStore bool, options ...app.Option) (*app.App, error) {
|
|
if err := utils.TranslationsPreInit(); err != nil {
|
|
return nil, err
|
|
}
|
|
model.AppErrorInit(i18n.T)
|
|
|
|
// The option order is important as app.Config option reads app.StartMetrics option.
|
|
options = append(options, app.Config(configDSN, readOnlyConfigStore, nil))
|
|
s, err := app.NewServer(options...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
a := app.New(app.ServerConnector(s.Channels()))
|
|
|
|
if model.BuildEnterpriseReady == "true" {
|
|
a.Srv().LoadLicense()
|
|
}
|
|
|
|
return a, nil
|
|
}
|