mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
70 lines
1.9 KiB
Go
70 lines
1.9 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package pgsql
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
|
|
"github.com/gogf/gf/v2/database/gdb"
|
|
"github.com/gogf/gf/v2/errors/gcode"
|
|
"github.com/gogf/gf/v2/errors/gerror"
|
|
"github.com/gogf/gf/v2/text/gstr"
|
|
)
|
|
|
|
// Open creates and returns an underlying sql.DB object for pgsql.
|
|
// https://pkg.go.dev/github.com/lib/pq
|
|
func (d *Driver) Open(config *gdb.ConfigNode) (db *sql.DB, err error) {
|
|
source, err := configNodeToSource(config)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
underlyingDriverName := "postgres"
|
|
if db, err = sql.Open(underlyingDriverName, source); err != nil {
|
|
err = gerror.WrapCodef(
|
|
gcode.CodeDbOperationError, err,
|
|
`sql.Open failed for driver "%s" by source "%s"`, underlyingDriverName, source,
|
|
)
|
|
return nil, err
|
|
}
|
|
return
|
|
}
|
|
|
|
func configNodeToSource(config *gdb.ConfigNode) (string, error) {
|
|
var source string
|
|
source = fmt.Sprintf(
|
|
"user=%s password='%s' host=%s sslmode=disable",
|
|
config.User, config.Pass, config.Host,
|
|
)
|
|
if config.Port != "" {
|
|
source = fmt.Sprintf("%s port=%s", source, config.Port)
|
|
}
|
|
if config.Name != "" {
|
|
source = fmt.Sprintf("%s dbname=%s", source, config.Name)
|
|
}
|
|
if config.Namespace != "" {
|
|
source = fmt.Sprintf("%s search_path=%s", source, config.Namespace)
|
|
}
|
|
if config.Timezone != "" {
|
|
source = fmt.Sprintf("%s timezone=%s", source, config.Timezone)
|
|
}
|
|
if config.Extra != "" {
|
|
extraMap, err := gstr.Parse(config.Extra)
|
|
if err != nil {
|
|
return "", gerror.WrapCodef(
|
|
gcode.CodeInvalidParameter,
|
|
err,
|
|
`invalid extra configuration: %s`, config.Extra,
|
|
)
|
|
}
|
|
for k, v := range extraMap {
|
|
source += fmt.Sprintf(` %s=%s`, k, v)
|
|
}
|
|
}
|
|
return source, nil
|
|
}
|