2019-06-08 13:53:45 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-06-08 13:53:45 +00:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2019-06-08 13:53:45 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
|
|
|
|
"github.com/urfave/cli"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CmdConvert represents the available convert sub-command.
|
|
|
|
var CmdConvert = cli.Command{
|
|
|
|
Name: "convert",
|
|
|
|
Usage: "Convert the database",
|
2023-04-17 13:22:10 +00:00
|
|
|
Description: "A command to convert an existing MySQL database from utf8 to utf8mb4 or MSSQL database from varchar to nvarchar",
|
2019-06-08 13:53:45 +00:00
|
|
|
Action: runConvert,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runConvert(ctx *cli.Context) error {
|
2021-11-07 03:11:27 +00:00
|
|
|
stdCtx, cancel := installSignals()
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
if err := initDB(stdCtx); err != nil {
|
2019-06-08 13:53:45 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-06-27 00:56:58 +00:00
|
|
|
log.Info("AppPath: %s", setting.AppPath)
|
|
|
|
log.Info("AppWorkPath: %s", setting.AppWorkPath)
|
|
|
|
log.Info("Custom path: %s", setting.CustomPath)
|
2023-02-19 16:12:01 +00:00
|
|
|
log.Info("Log path: %s", setting.Log.RootPath)
|
2021-09-14 01:24:57 +00:00
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
2019-06-08 13:53:45 +00:00
|
|
|
|
2023-04-17 13:22:10 +00:00
|
|
|
switch {
|
|
|
|
case setting.Database.Type.IsMySQL():
|
|
|
|
if err := db.ConvertUtf8ToUtf8mb4(); err != nil {
|
|
|
|
log.Fatal("Failed to convert database from utf8 to utf8mb4: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println("Converted successfully, please confirm your database's character set is now utf8mb4")
|
|
|
|
case setting.Database.Type.IsMSSQL():
|
|
|
|
if err := db.ConvertVarcharToNVarchar(); err != nil {
|
|
|
|
log.Fatal("Failed to convert database from varchar to nvarchar: %v", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println("Converted successfully, please confirm your database's all columns character is NVARCHAR now")
|
|
|
|
default:
|
|
|
|
fmt.Println("This command can only be used with a MySQL or MSSQL database")
|
2019-06-08 13:53:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|