2019-06-08 07:53:45 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-06-08 07:53:45 -06:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2019-06-08 07:53:45 -06: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",
|
|
|
|
Description: "A command to convert an existing MySQL database from utf8 to utf8mb4",
|
|
|
|
Action: runConvert,
|
|
|
|
}
|
|
|
|
|
|
|
|
func runConvert(ctx *cli.Context) error {
|
2021-11-06 21:11:27 -06:00
|
|
|
stdCtx, cancel := installSignals()
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
if err := initDB(stdCtx); err != nil {
|
2019-06-08 07:53:45 -06:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-06-26 18:56:58 -06:00
|
|
|
log.Info("AppPath: %s", setting.AppPath)
|
|
|
|
log.Info("AppWorkPath: %s", setting.AppWorkPath)
|
|
|
|
log.Info("Custom path: %s", setting.CustomPath)
|
2023-02-19 09:12:01 -07:00
|
|
|
log.Info("Log path: %s", setting.Log.RootPath)
|
2021-09-13 19:24:57 -06:00
|
|
|
log.Info("Configuration file: %s", setting.CustomConf)
|
2019-06-08 07:53:45 -06:00
|
|
|
|
2019-08-24 03:24:45 -06:00
|
|
|
if !setting.Database.UseMySQL {
|
2019-06-08 07:53:45 -06:00
|
|
|
fmt.Println("This command can only be used with a MySQL database")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-09-19 05:49:59 -06:00
|
|
|
if err := db.ConvertUtf8ToUtf8mb4(); err != nil {
|
2019-06-08 07:53:45 -06:00
|
|
|
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")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|