70 lines
2.4 KiB
Go
70 lines
2.4 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package commands
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/i18n"
|
|
"github.com/mattermost/mattermost/server/public/shared/mlog"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
"github.com/mattermost/mattermost/server/v8/channels/app"
|
|
"github.com/mattermost/mattermost/server/v8/channels/store"
|
|
"github.com/mattermost/mattermost/server/v8/channels/store/sqlstore"
|
|
"github.com/mattermost/mattermost/server/v8/channels/utils"
|
|
"github.com/mattermost/mattermost/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
|
|
}
|
|
|
|
func initStoreCommandContextCobra(logger mlog.LoggerIFace, command *cobra.Command) (store.Store, error) {
|
|
cfgDSN := getConfigDSN(command, config.GetEnvironment())
|
|
cfgStore, err := config.NewStoreFromDSN(cfgDSN, true, nil, true)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to load configuration")
|
|
}
|
|
|
|
config := cfgStore.Get()
|
|
return sqlstore.New(config.SqlSettings, logger, nil)
|
|
}
|