mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 03:43:11 -06:00
48 lines
1.6 KiB
Go
48 lines
1.6 KiB
Go
package storage
|
|
|
|
import (
|
|
"net/url"
|
|
|
|
dht "github.com/libp2p/go-libp2p-kad-dht"
|
|
pubsub "github.com/libp2p/go-libp2p-pubsub"
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-p2p-demo/storage/postgreswithdht"
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-p2p-demo/storage/postgreswithpubsub"
|
|
"github.com/matrix-org/dendrite/publicroomsapi/storage"
|
|
"github.com/matrix-org/dendrite/publicroomsapi/storage/sqlite3"
|
|
)
|
|
|
|
const schemePostgres = "postgres"
|
|
const schemeFile = "file"
|
|
|
|
// NewPublicRoomsServerDatabase opens a database connection.
|
|
func NewPublicRoomsServerDatabaseWithDHT(dataSourceName string, dht *dht.IpfsDHT) (storage.Database, error) {
|
|
uri, err := url.Parse(dataSourceName)
|
|
if err != nil {
|
|
return postgreswithdht.NewPublicRoomsServerDatabase(dataSourceName, dht)
|
|
}
|
|
switch uri.Scheme {
|
|
case schemePostgres:
|
|
return postgreswithdht.NewPublicRoomsServerDatabase(dataSourceName, dht)
|
|
case schemeFile:
|
|
return sqlite3.NewPublicRoomsServerDatabase(dataSourceName)
|
|
default:
|
|
return postgreswithdht.NewPublicRoomsServerDatabase(dataSourceName, dht)
|
|
}
|
|
}
|
|
|
|
// NewPublicRoomsServerDatabase opens a database connection.
|
|
func NewPublicRoomsServerDatabaseWithPubSub(dataSourceName string, pubsub *pubsub.PubSub) (storage.Database, error) {
|
|
uri, err := url.Parse(dataSourceName)
|
|
if err != nil {
|
|
return postgreswithpubsub.NewPublicRoomsServerDatabase(dataSourceName, pubsub)
|
|
}
|
|
switch uri.Scheme {
|
|
case schemePostgres:
|
|
return postgreswithpubsub.NewPublicRoomsServerDatabase(dataSourceName, pubsub)
|
|
case schemeFile:
|
|
return sqlite3.NewPublicRoomsServerDatabase(dataSourceName)
|
|
default:
|
|
return postgreswithpubsub.NewPublicRoomsServerDatabase(dataSourceName, pubsub)
|
|
}
|
|
}
|