1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

fix(database/gdb): add compatibility for old configiration with both Type and part of Link configurations (#4058)

This commit is contained in:
John Guo 2024-12-18 15:54:27 +08:00 committed by GitHub
parent 67a9db9e3e
commit 92eab81926
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 30 additions and 5 deletions

View File

@ -7,6 +7,7 @@
package gdb package gdb
import ( import (
"fmt"
"sync" "sync"
"time" "time"
@ -381,14 +382,22 @@ func (c *Core) GetSchema() string {
} }
func parseConfigNodeLink(node *ConfigNode) (*ConfigNode, error) { func parseConfigNodeLink(node *ConfigNode) (*ConfigNode, error) {
var match []string var (
if node.Link != "" { link = node.Link
match, _ = gregex.MatchString(linkPattern, node.Link) match []string
)
if link != "" {
// To be compatible with old configuration,
// it checks and converts the link to new configuration.
if node.Type != "" && !gstr.HasPrefix(link, node.Type+":") {
link = fmt.Sprintf("%s:%s", node.Type, link)
}
match, _ = gregex.MatchString(linkPattern, link)
if len(match) <= 5 { if len(match) <= 5 {
return nil, gerror.NewCodef( return nil, gerror.NewCodef(
gcode.CodeInvalidParameter, gcode.CodeInvalidParameter,
`invalid link configuration: %s, shuold be pattern like: %s`, `invalid link configuration: %s, shuold be pattern like: %s`,
node.Link, linkPatternDescription, link, linkPatternDescription,
) )
} }
node.Type = match[1] node.Type = match[1]
@ -412,7 +421,6 @@ func parseConfigNodeLink(node *ConfigNode) (*ConfigNode, error) {
if len(match) > 6 && match[7] != "" { if len(match) > 6 && match[7] != "" {
node.Extra = match[7] node.Extra = match[7]
} }
node.Link = ""
} }
if node.Extra != "" { if node.Extra != "" {
if m, _ := gstr.Parse(node.Extra); len(m) > 0 { if m, _ := gstr.Parse(node.Extra); len(m) > 0 {

View File

@ -278,6 +278,23 @@ func Test_parseConfigNodeLink_WithType(t *testing.T) {
t.Assert(newNode.Charset, `utf8`) t.Assert(newNode.Charset, `utf8`)
t.Assert(newNode.Protocol, `unix`) t.Assert(newNode.Protocol, `unix`)
}) })
gtest.C(t, func(t *gtest.T) {
node := &ConfigNode{
Type: "mysql",
Link: "username:password@unix(/tmp/mysql.sock)/dbname",
}
newNode, err := parseConfigNodeLink(node)
t.AssertNil(err)
t.Assert(newNode.Type, `mysql`)
t.Assert(newNode.User, `username`)
t.Assert(newNode.Pass, `password`)
t.Assert(newNode.Host, `/tmp/mysql.sock`)
t.Assert(newNode.Port, ``)
t.Assert(newNode.Name, `dbname`)
t.Assert(newNode.Extra, ``)
t.Assert(newNode.Charset, `utf8`)
t.Assert(newNode.Protocol, `unix`)
})
} }
func Test_Func_doQuoteWord(t *testing.T) { func Test_Func_doQuoteWord(t *testing.T) {