* extracting i18n functionality to i18n core library * Removing utils.T * Adding documentation and changing one function name for better explanation * Changing other missing utils.T * Adding license string * Renaming corelibs to pkg * Renaming corelibs to pkg (moving directory) * Renaming from pkg to shared * Fixing bodyPage.Html casing * Fixing merges * Fixing merge problem * Fixing tests
60 строки
1.6 KiB
Go
60 строки
1.6 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/v5/app"
|
|
"github.com/mattermost/mattermost-server/v5/config"
|
|
"github.com/mattermost/mattermost-server/v5/model"
|
|
"github.com/mattermost/mattermost-server/v5/shared/i18n"
|
|
"github.com/mattermost/mattermost-server/v5/utils"
|
|
)
|
|
|
|
func initDBCommandContextCobra(command *cobra.Command, readOnlyConfigStore bool) (*app.App, error) {
|
|
a, err := initDBCommandContext(getConfigDSN(command, config.GetEnvironment()), readOnlyConfigStore)
|
|
if err != nil {
|
|
// Returning an error just prints the usage message, so actually panic
|
|
panic(err)
|
|
}
|
|
|
|
a.InitPlugins(*a.Config().PluginSettings.Directory, *a.Config().PluginSettings.ClientDirectory)
|
|
a.DoAppMigrations()
|
|
|
|
return a, nil
|
|
}
|
|
|
|
func InitDBCommandContextCobra(command *cobra.Command) (*app.App, error) {
|
|
return initDBCommandContextCobra(command, true)
|
|
}
|
|
|
|
func InitDBCommandContextCobraReadWrite(command *cobra.Command) (*app.App, error) {
|
|
return initDBCommandContextCobra(command, false)
|
|
}
|
|
|
|
func initDBCommandContext(configDSN string, readOnlyConfigStore bool) (*app.App, error) {
|
|
if err := utils.TranslationsPreInit(); err != nil {
|
|
return nil, err
|
|
}
|
|
model.AppErrorInit(i18n.T)
|
|
|
|
s, err := app.NewServer(
|
|
app.Config(configDSN, false, readOnlyConfigStore, nil),
|
|
app.StartSearchEngine,
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
a := app.New(app.ServerConnector(s))
|
|
|
|
if model.BuildEnterpriseReady == "true" {
|
|
a.Srv().LoadLicense()
|
|
}
|
|
a.InitServer()
|
|
|
|
return a, nil
|
|
}
|