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"
|
2018-12-27 13:38:38 +01:00
|
|
|
"strings"
|
2018-01-12 23:16:49 +01:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"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")
|
|
|
|
}
|
2018-12-27 13:38:38 +01:00
|
|
|
|
|
|
|
if len(strings.TrimSpace(c.String(a))) == 0 {
|
|
|
|
return errors.New(a + " is required")
|
|
|
|
}
|
2018-01-12 23:16:49 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func initDB() error {
|
2018-11-01 14:41:07 +01:00
|
|
|
return initDBDisableConsole(false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func initDBDisableConsole(disableConsole bool) error {
|
2018-01-12 23:16:49 +01:00
|
|
|
setting.NewContext()
|
|
|
|
models.LoadConfigs()
|
|
|
|
|
2018-11-01 14:41:07 +01: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
|
|
|
|
}
|