2022-02-11 10:02:47 +00:00
|
|
|
package database
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2022-07-28 14:25:42 +00:00
|
|
|
"reflect"
|
2022-03-28 08:05:09 +00:00
|
|
|
|
2022-07-28 14:25:42 +00:00
|
|
|
_ "github.com/zitadel/zitadel/internal/database/cockroach"
|
|
|
|
"github.com/zitadel/zitadel/internal/database/dialect"
|
2022-02-11 10:02:47 +00:00
|
|
|
)
|
|
|
|
|
2022-07-28 14:25:42 +00:00
|
|
|
type Config struct {
|
|
|
|
Dialects map[string]interface{} `mapstructure:",remain"`
|
|
|
|
connector dialect.Connector
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Config) SetConnector(connector dialect.Connector) {
|
|
|
|
c.connector = connector
|
|
|
|
}
|
|
|
|
|
|
|
|
type User struct {
|
|
|
|
Username string
|
|
|
|
Password string
|
|
|
|
SSL SSL
|
|
|
|
}
|
|
|
|
|
|
|
|
type SSL struct {
|
|
|
|
// type of connection security
|
|
|
|
Mode string
|
|
|
|
// RootCert Path to the CA certificate
|
|
|
|
RootCert string
|
|
|
|
// Cert Path to the client certificate
|
|
|
|
Cert string
|
|
|
|
// Key Path to the client private key
|
|
|
|
Key string
|
|
|
|
}
|
|
|
|
|
|
|
|
func Connect(config Config, useAdmin bool) (*sql.DB, error) {
|
|
|
|
client, err := config.connector.Connect(useAdmin)
|
2022-02-11 10:02:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2022-03-28 08:05:09 +00:00
|
|
|
if err := client.Ping(); err != nil {
|
2022-07-28 14:25:42 +00:00
|
|
|
return nil, err
|
2022-03-28 08:05:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-11 10:02:47 +00:00
|
|
|
return client, nil
|
|
|
|
}
|
2022-07-28 14:25:42 +00:00
|
|
|
|
|
|
|
func DecodeHook(from, to reflect.Value) (interface{}, error) {
|
|
|
|
if to.Type() != reflect.TypeOf(Config{}) {
|
|
|
|
return from.Interface(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
configuredDialects, ok := from.Interface().(map[string]interface{})
|
|
|
|
if !ok {
|
|
|
|
return from.Interface(), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
configuredDialect := dialect.SelectByConfig(configuredDialects)
|
|
|
|
configs := make([]interface{}, 0, len(configuredDialects)-1)
|
|
|
|
|
|
|
|
for name, dialectConfig := range configuredDialects {
|
|
|
|
if !configuredDialect.Matcher.MatchName(name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
configs = append(configs, dialectConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
connector, err := configuredDialect.Matcher.Decode(configs)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return Config{connector: connector}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Config) Database() string {
|
|
|
|
return c.connector.DatabaseName()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Config) Username() string {
|
|
|
|
return c.connector.Username()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Config) Password() string {
|
|
|
|
return c.connector.Password()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c Config) Type() string {
|
|
|
|
return c.connector.Type()
|
|
|
|
}
|