Files
gitea/cmd/cmd.go
T

49 lines
1.1 KiB
Go
Raw Normal View History

2018-01-12 23:16:49 +01:00
// Copyright 2018 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
// Package cmd provides subcommands to the gitea binary - such as "web" or
// "admin".
package cmd
import (
"errors"
"fmt"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/setting"
2019-01-21 12:45:32 +01:00
"code.gitea.io/gitea/modules/util"
2018-01-12 23:16:49 +01:00
"github.com/urfave/cli"
)
// argsSet checks that all the required arguments are set. args is a list of
// arguments that must be set in the passed Context.
func argsSet(c *cli.Context, args ...string) error {
for _, a := range args {
if !c.IsSet(a) {
return errors.New(a + " is not set")
}
2019-01-21 12:45:32 +01:00
if util.IsEmptyString(a) {
return errors.New(a + " is required")
}
2018-01-12 23:16:49 +01:00
}
return nil
}
func initDB() error {
2018-11-01 13:41:07 +00:00
return initDBDisableConsole(false)
}
func initDBDisableConsole(disableConsole bool) error {
2018-01-12 23:16:49 +01:00
setting.NewContext()
models.LoadConfigs()
2018-11-01 13:41:07 +00:00
setting.NewXORMLogService(disableConsole)
2018-01-12 23:16:49 +01:00
if err := models.SetEngine(); err != nil {
return fmt.Errorf("models.SetEngine: %v", err)
}
return nil
}