7539febd22
* Added null.v3 import
142 lines
4.1 KiB
Go
142 lines
4.1 KiB
Go
package dbdrivers
|
|
|
|
import (
|
|
"database/sql"
|
|
"fmt"
|
|
|
|
// Import the postgres driver
|
|
_ "github.com/lib/pq"
|
|
)
|
|
|
|
// PostgresDriver holds the database connection string and a handle
|
|
// to the database connection.
|
|
type PostgresDriver struct {
|
|
connStr string
|
|
dbConn *sql.DB
|
|
}
|
|
|
|
// NewPostgresDriver takes the database connection details as parameters and
|
|
// returns a pointer to a PostgresDriver object. Note that it is required to
|
|
// call PostgresDriver.Open() and PostgresDriver.Close() to open and close
|
|
// the database connection once an object has been obtained.
|
|
func NewPostgresDriver(user, pass, dbname, host string, port int) *PostgresDriver {
|
|
driver := PostgresDriver{
|
|
connStr: fmt.Sprintf("user=%s password=%s dbname=%s host=%s port=%d",
|
|
user, pass, dbname, host, port),
|
|
}
|
|
|
|
return &driver
|
|
}
|
|
|
|
// Open opens the database connection using the connection string
|
|
func (d *PostgresDriver) Open() error {
|
|
var err error
|
|
d.dbConn, err = sql.Open("postgres", d.connStr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Close closes the database connection
|
|
func (d *PostgresDriver) Close() {
|
|
d.dbConn.Close()
|
|
}
|
|
|
|
// GetAllTableNames connects to the postgres database and
|
|
// retrieves all table names from the information_schema where the
|
|
// table schema is public. It excludes common migration tool tables
|
|
// such as gorp_migrations
|
|
func (d *PostgresDriver) GetAllTableNames() ([]string, error) {
|
|
var tableNames []string
|
|
|
|
rows, err := d.dbConn.Query(`select table_name from
|
|
information_schema.tables where table_schema='public'
|
|
and table_name <> 'gorp_migrations'`)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer rows.Close()
|
|
for rows.Next() {
|
|
var tableName string
|
|
if err := rows.Scan(&tableName); err != nil {
|
|
return nil, err
|
|
}
|
|
tableNames = append(tableNames, tableName)
|
|
}
|
|
|
|
return tableNames, nil
|
|
}
|
|
|
|
// GetTableInfo takes a table name and attempts to retrieve the table information
|
|
// from the database information_schema.columns. It retrieves the column names
|
|
// and column types and returns those as a []DBTable after ParseTableInfo()
|
|
// converts the SQL types to Go types, for example: "varchar" to "string"
|
|
func (d *PostgresDriver) GetTableInfo(tableName string) ([]DBTable, error) {
|
|
var tableInfo []DBTable
|
|
|
|
rows, err := d.dbConn.Query(`select column_name, data_type, is_nullable from
|
|
information_schema.columns where table_name=$1`, tableName)
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
defer rows.Close()
|
|
for rows.Next() {
|
|
var colName, colType, isNullable string
|
|
if err := rows.Scan(&colName, &colType, &isNullable); err != nil {
|
|
return nil, err
|
|
}
|
|
tableInfo = append(tableInfo, d.ParseTableInfo(colName, colType, isNullable))
|
|
}
|
|
|
|
return tableInfo, nil
|
|
}
|
|
|
|
// ParseTableInfo converts postgres database types to Go types, for example
|
|
// "varchar" to "string" and "bigint" to "int64". It returns this parsed data
|
|
// as a DBTable object.
|
|
func (d *PostgresDriver) ParseTableInfo(colName, colType, isNullable string) DBTable {
|
|
t := DBTable{}
|
|
|
|
t.ColName = colName
|
|
if isNullable == "YES" {
|
|
switch colType {
|
|
case "bigint", "bigserial", "integer", "smallint", "smallserial", "serial":
|
|
t.ColType = "null.Int"
|
|
case "bit", "bit varying", "character", "character varying", "cidr", "inet", "json", "macaddr", "text", "uuid", "xml":
|
|
t.ColType = "null.String"
|
|
case "boolean":
|
|
t.ColType = "null.Bool"
|
|
case "date", "interval", "time", "timestamp without time zone", "timestamp with time zone":
|
|
t.ColType = "null.Time"
|
|
case "double precision", "money", "numeric", "real":
|
|
t.ColType = "null.Float"
|
|
default:
|
|
t.ColType = "null.String"
|
|
}
|
|
} else {
|
|
switch colType {
|
|
case "bigint", "bigserial", "integer", "smallint", "smallserial", "serial":
|
|
t.ColType = "int64"
|
|
case "bit", "bit varying", "character", "character varying", "cidr", "inet", "json", "macaddr", "text", "uuid", "xml":
|
|
t.ColType = "string"
|
|
case "bytea":
|
|
t.ColType = "[]byte"
|
|
case "boolean":
|
|
t.ColType = "bool"
|
|
case "date", "interval", "time", "timestamp without time zone", "timestamp with time zone":
|
|
t.ColType = "time.Time"
|
|
case "double precision", "money", "numeric", "real":
|
|
t.ColType = "float64"
|
|
default:
|
|
t.ColType = "string"
|
|
}
|
|
}
|
|
|
|
return t
|
|
}
|