2019-06-08 19:23:45 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-06-08 19:23:45 +05:30
|
|
|
|
2021-09-19 17:19:59 +05:30
|
|
|
package db
|
2019-06-08 19:23:45 +05:30
|
|
|
|
2019-08-24 14:54:45 +05:30
|
|
|
import (
|
|
|
|
"fmt"
|
2022-01-02 18:42:35 +05:30
|
|
|
"strconv"
|
2019-08-24 14:54:45 +05:30
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-08-24 14:54:45 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-06-30 02:30:02 +05:30
|
|
|
|
2022-01-02 18:42:35 +05:30
|
|
|
"xorm.io/xorm"
|
2021-06-30 02:30:02 +05:30
|
|
|
"xorm.io/xorm/schemas"
|
2019-08-24 14:54:45 +05:30
|
|
|
)
|
2019-06-08 19:23:45 +05:30
|
|
|
|
2020-09-11 13:55:06 +05:30
|
|
|
// ConvertUtf8ToUtf8mb4 converts database and tables from utf8 to utf8mb4 if it's mysql and set ROW_FORMAT=dynamic
|
2019-06-08 19:23:45 +05:30
|
|
|
func ConvertUtf8ToUtf8mb4() error {
|
2021-06-30 02:30:02 +05:30
|
|
|
if x.Dialect().URI().DBType != schemas.MYSQL {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-24 14:54:45 +05:30
|
|
|
_, err := x.Exec(fmt.Sprintf("ALTER DATABASE `%s` CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci", setting.Database.Name))
|
2019-06-08 19:23:45 +05:30
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
tables, err := x.DBMetas()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, table := range tables {
|
2020-09-11 13:55:06 +05:30
|
|
|
if _, err := x.Exec(fmt.Sprintf("ALTER TABLE `%s` ROW_FORMAT=dynamic;", table.Name)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-06-08 19:23:45 +05:30
|
|
|
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 18:42:35 +05:30
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|