2018-01-13 03:46:49 +05:30
|
|
|
// 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 (
|
2021-07-14 20:13:13 +05:30
|
|
|
"context"
|
2018-01-13 03:46:49 +05:30
|
|
|
"errors"
|
|
|
|
"fmt"
|
2021-07-14 20:13:13 +05:30
|
|
|
"os"
|
|
|
|
"os/signal"
|
2020-10-25 02:08:14 +05:30
|
|
|
"strings"
|
2021-07-14 20:13:13 +05:30
|
|
|
"syscall"
|
2018-01-13 03:46:49 +05:30
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-12-01 13:20:01 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2018-01-13 03:46:49 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-01-21 17:15:32 +05:30
|
|
|
"code.gitea.io/gitea/modules/util"
|
|
|
|
|
2018-01-13 03:46:49 +05:30
|
|
|
"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 18:08:38 +05:30
|
|
|
|
2019-01-21 17:15:32 +05:30
|
|
|
if util.IsEmptyString(a) {
|
2018-12-27 18:08:38 +05:30
|
|
|
return errors.New(a + " is required")
|
|
|
|
}
|
2018-01-13 03:46:49 +05:30
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-25 02:08:14 +05:30
|
|
|
// confirm waits for user input which confirms an action
|
|
|
|
func confirm() (bool, error) {
|
|
|
|
var response string
|
|
|
|
|
|
|
|
_, err := fmt.Scanln(&response)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch strings.ToLower(response) {
|
|
|
|
case "y", "yes":
|
|
|
|
return true, nil
|
|
|
|
case "n", "no":
|
|
|
|
return false, nil
|
|
|
|
default:
|
|
|
|
return false, errors.New(response + " isn't a correct confirmation string")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-07 08:41:27 +05:30
|
|
|
func initDB(ctx context.Context) error {
|
2021-12-01 13:20:01 +05:30
|
|
|
setting.LoadFromExisting()
|
2019-08-24 14:54:45 +05:30
|
|
|
setting.InitDBConfig()
|
2021-12-01 13:20:01 +05:30
|
|
|
setting.NewXORMLogService(false)
|
|
|
|
|
|
|
|
if setting.Database.Type == "" {
|
|
|
|
log.Fatal(`Database settings are missing from the configuration file: %q.
|
|
|
|
Ensure you are running in the correct environment or set the correct configuration file with -c.
|
|
|
|
If this is the intended configuration file complete the [database] section.`, setting.CustomConf)
|
|
|
|
}
|
2021-11-07 08:41:27 +05:30
|
|
|
if err := db.InitEngine(ctx); err != nil {
|
2021-12-01 13:20:01 +05:30
|
|
|
return fmt.Errorf("unable to initialise the database using the configuration in %q. Error: %v", setting.CustomConf, err)
|
2018-01-13 03:46:49 +05:30
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-07-14 20:13:13 +05:30
|
|
|
|
|
|
|
func installSignals() (context.Context, context.CancelFunc) {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
go func() {
|
|
|
|
// install notify
|
|
|
|
signalChannel := make(chan os.Signal, 1)
|
|
|
|
|
|
|
|
signal.Notify(
|
|
|
|
signalChannel,
|
|
|
|
syscall.SIGINT,
|
|
|
|
syscall.SIGTERM,
|
|
|
|
)
|
|
|
|
select {
|
|
|
|
case <-signalChannel:
|
|
|
|
case <-ctx.Done():
|
|
|
|
}
|
|
|
|
cancel()
|
|
|
|
signal.Reset()
|
|
|
|
}()
|
|
|
|
|
|
|
|
return ctx, cancel
|
|
|
|
}
|