mtsatellite/common/clientfactory.go
2022-02-27 22:48:20 +01:00

41 lines
772 B
Go

// Copyright 2022 by Sascha L. Teichmann
// Use of this source code is governed by the MIT license
// that can be found in the LICENSE file.
package common
import (
"fmt"
"strings"
)
type DBClientCreator func() (DBClient, error)
func CreateDBClientCreator(host string, port int) DBClientCreator {
if strings.HasPrefix(host, "postgres:") {
host = host[len("postgres:"):]
return func() (DBClient, error) {
return NewPGClient(host)
}
}
var address string
if strings.ContainsRune(host, '/') {
address = host
} else {
address = fmt.Sprintf("%s:%d", host, port)
}
var proto string
if strings.ContainsRune(address, '/') {
proto = "unix"
} else {
proto = "tcp"
}
return func() (DBClient, error) {
return NewRedisClient(proto, address)
}
}