2019-06-08 07:53:45 -06:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2021-09-19 05:49:59 -06:00
|
|
|
package db
|
2019-06-08 07:53:45 -06:00
|
|
|
|
2019-08-24 03:24:45 -06:00
|
|
|
import (
|
|
|
|
"fmt"
|
2022-01-02 06:12:35 -07:00
|
|
|
"strconv"
|
2019-08-24 03:24:45 -06:00
|
|
|
|
2022-01-02 06:12:35 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-08-24 03:24:45 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-06-29 15:00:02 -06:00
|
|
|
|
2022-01-02 06:12:35 -07:00
|
|
|
"xorm.io/xorm"
|
2021-06-29 15:00:02 -06:00
|
|
|
"xorm.io/xorm/schemas"
|
2019-08-24 03:24:45 -06:00
|
|
|
)
|
2019-06-08 07:53:45 -06:00
|
|
|
|
2020-09-11 02:25:06 -06:00
|
|
|
// ConvertUtf8ToUtf8mb4 converts database and tables from utf8 to utf8mb4 if it's mysql and set ROW_FORMAT=dynamic
|
2019-06-08 07:53:45 -06:00
|
|
|
func ConvertUtf8ToUtf8mb4() error {
|
2021-06-29 15:00:02 -06:00
|
|
|
if x.Dialect().URI().DBType != schemas.MYSQL {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-24 03:24:45 -06:00
|
|
|
_, err := x.Exec(fmt.Sprintf("ALTER DATABASE `%s` CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci", setting.Database.Name))
|
2019-06-08 07:53:45 -06:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
tables, err := x.DBMetas()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, table := range tables {
|
2020-09-11 02:25:06 -06:00
|
|
|
if _, err := x.Exec(fmt.Sprintf("ALTER TABLE `%s` ROW_FORMAT=dynamic;", table.Name)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-06-08 07:53:45 -06:00
|
|
|
if _, err := x.Exec(fmt.Sprintf("ALTER TABLE `%s` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;", table.Name)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2022-01-02 06:12:35 -07:00
|
|
|
|
|
|
|
// Cell2Int64 converts a xorm.Cell type to int64,
|
|
|
|
// and handles possible irregular cases.
|
|
|
|
func Cell2Int64(val xorm.Cell) int64 {
|
|
|
|
switch (*val).(type) {
|
|
|
|
case []uint8:
|
|
|
|
log.Trace("Cell2Int64 ([]uint8): %v", *val)
|
|
|
|
|
|
|
|
v, _ := strconv.ParseInt(string((*val).([]uint8)), 10, 64)
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
return (*val).(int64)
|
|
|
|
}
|