mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-29 13:49:28 +08:00

According to https://www.postgresql.org/docs/current/uuid-ossp.html it's recommended to use https://www.postgresql.org/docs/current/pgcrypto.html for randomly-generated (version 4) UUIDs Signed-off-by: Alexander Obukhov <dev@sprql.space>
77 lines
1.8 KiB
Go
77 lines
1.8 KiB
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package postgres
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/jmoiron/sqlx"
|
|
|
|
_ "github.com/lib/pq" // required for SQL access
|
|
migrate "github.com/rubenv/sql-migrate"
|
|
)
|
|
|
|
// Config defines the options that are used when connecting to a PostgreSQL instance
|
|
type Config struct {
|
|
Host string
|
|
Port string
|
|
User string
|
|
Pass string
|
|
Name string
|
|
SSLMode string
|
|
SSLCert string
|
|
SSLKey string
|
|
SSLRootCert string
|
|
}
|
|
|
|
// Connect creates a connection to the PostgreSQL instance and applies any
|
|
// unapplied database migrations. A non-nil error is returned to indicate
|
|
// failure.
|
|
func Connect(cfg Config) (*sqlx.DB, error) {
|
|
url := fmt.Sprintf("host=%s port=%s user=%s dbname=%s password=%s sslmode=%s sslcert=%s sslkey=%s sslrootcert=%s", cfg.Host, cfg.Port, cfg.User, cfg.Name, cfg.Pass, cfg.SSLMode, cfg.SSLCert, cfg.SSLKey, cfg.SSLRootCert)
|
|
|
|
db, err := sqlx.Open("postgres", url)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := migrateDB(db); err != nil {
|
|
return nil, err
|
|
}
|
|
return db, nil
|
|
}
|
|
|
|
func migrateDB(db *sqlx.DB) error {
|
|
migrations := &migrate.MemoryMigrationSource{
|
|
Migrations: []*migrate.Migration{
|
|
{
|
|
Id: "users_1",
|
|
Up: []string{
|
|
`CREATE TABLE IF NOT EXISTS users (
|
|
email VARCHAR(254) PRIMARY KEY,
|
|
password CHAR(60) NOT NULL)`,
|
|
},
|
|
Down: []string{"DROP TABLE users"},
|
|
},
|
|
{
|
|
Id: "users_2",
|
|
Up: []string{
|
|
`ALTER TABLE IF EXISTS users ADD COLUMN IF NOT EXISTS metadata JSONB`,
|
|
},
|
|
},
|
|
{
|
|
Id: "users_3",
|
|
Up: []string{
|
|
`CREATE EXTENSION IF NOT EXISTS "pgcrypto";
|
|
ALTER TABLE IF EXISTS users ADD COLUMN IF NOT EXISTS
|
|
id UUID NOT NULL DEFAULT gen_random_uuid()`,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
_, err := migrate.Exec(db.DB, "postgres", migrations, migrate.Up)
|
|
return err
|
|
}
|