mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
e38abdcdf3
Queries the data in the storage layser at the timestamp when the call hit the API layer
69 lines
1.1 KiB
Go
69 lines
1.1 KiB
Go
package dialect
|
|
|
|
import (
|
|
"database/sql"
|
|
"sync"
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
Dialects map[string]interface{} `mapstructure:",remain"`
|
|
Dialect Matcher
|
|
}
|
|
|
|
type Dialect struct {
|
|
Matcher Matcher
|
|
Config Connector
|
|
IsDefault bool
|
|
}
|
|
|
|
var (
|
|
dialects []*Dialect
|
|
defaultDialect *Dialect
|
|
dialectsMu sync.Mutex
|
|
)
|
|
|
|
type Matcher interface {
|
|
MatchName(string) bool
|
|
Decode([]interface{}) (Connector, error)
|
|
}
|
|
|
|
type Connector interface {
|
|
Connect(useAdmin bool) (*sql.DB, error)
|
|
Password() string
|
|
Database
|
|
}
|
|
|
|
type Database interface {
|
|
DatabaseName() string
|
|
Username() string
|
|
Type() string
|
|
Timetravel(time.Duration) string
|
|
}
|
|
|
|
func Register(matcher Matcher, config Connector, isDefault bool) {
|
|
dialectsMu.Lock()
|
|
defer dialectsMu.Unlock()
|
|
|
|
d := &Dialect{Matcher: matcher, Config: config}
|
|
|
|
if isDefault {
|
|
defaultDialect = d
|
|
return
|
|
}
|
|
|
|
dialects = append(dialects, d)
|
|
}
|
|
|
|
func SelectByConfig(config map[string]interface{}) *Dialect {
|
|
for key := range config {
|
|
for _, d := range dialects {
|
|
if d.Matcher.MatchName(key) {
|
|
return d
|
|
}
|
|
}
|
|
}
|
|
|
|
return defaultDialect
|
|
}
|