2019-03-24 14:57:29 +01:00
|
|
|
package psql
|
|
|
|
|
|
|
|
import (
|
2019-09-26 06:35:31 +02:00
|
|
|
"context"
|
2019-03-24 14:57:29 +01:00
|
|
|
"fmt"
|
2019-12-02 16:52:22 +01:00
|
|
|
"strconv"
|
2019-03-24 14:57:29 +01:00
|
|
|
"strings"
|
|
|
|
|
2019-09-30 07:48:29 +02:00
|
|
|
"github.com/jackc/pgtype"
|
2019-09-26 06:35:31 +02:00
|
|
|
"github.com/jackc/pgx/v4/pgxpool"
|
2019-03-24 14:57:29 +01:00
|
|
|
)
|
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
type DBInfo struct {
|
|
|
|
Version int
|
|
|
|
Tables []DBTable
|
|
|
|
Columns [][]DBColumn
|
|
|
|
colmap map[string]map[string]*DBColumn
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetDBInfo(db *pgxpool.Pool) (*DBInfo, error) {
|
|
|
|
di := &DBInfo{}
|
|
|
|
|
|
|
|
dbc, err := db.Acquire(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error acquiring connection from pool: %w", err)
|
|
|
|
}
|
|
|
|
defer dbc.Release()
|
|
|
|
|
|
|
|
var version string
|
|
|
|
|
|
|
|
err = dbc.QueryRow(context.Background(), `SHOW server_version_num`).Scan(&version)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error fetching version: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
di.Version, err = strconv.Atoi(version)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
di.Tables, err = GetTables(dbc)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
di.colmap = make(map[string]map[string]*DBColumn, len(di.Tables))
|
|
|
|
|
|
|
|
for i, t := range di.Tables {
|
|
|
|
cols, err := GetColumns(dbc, "public", t.Name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
di.Columns = append(di.Columns, cols)
|
|
|
|
di.colmap[t.Key] = make(map[string]*DBColumn, len(cols))
|
|
|
|
|
|
|
|
for n, c := range di.Columns[i] {
|
|
|
|
di.colmap[t.Key][c.Key] = &di.Columns[i][n]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return di, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (di *DBInfo) GetColumn(table, column string) (*DBColumn, bool) {
|
|
|
|
v, ok := di.colmap[strings.ToLower(table)][strings.ToLower(column)]
|
|
|
|
return v, ok
|
|
|
|
}
|
|
|
|
|
2019-06-14 06:32:15 +02:00
|
|
|
type DBTable struct {
|
2019-12-09 07:48:18 +01:00
|
|
|
ID int
|
2019-09-26 06:35:31 +02:00
|
|
|
Name string
|
2019-12-09 07:48:18 +01:00
|
|
|
Key string
|
2019-09-26 06:35:31 +02:00
|
|
|
Type string
|
2019-06-14 06:32:15 +02:00
|
|
|
}
|
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
func GetTables(dbc *pgxpool.Conn) ([]DBTable, error) {
|
2019-06-14 06:32:15 +02:00
|
|
|
sqlStmt := `
|
2019-09-29 21:20:59 +02:00
|
|
|
SELECT
|
|
|
|
c.relname as "name",
|
|
|
|
CASE c.relkind WHEN 'r' THEN 'table'
|
2019-09-26 06:35:31 +02:00
|
|
|
WHEN 'v' THEN 'view'
|
|
|
|
WHEN 'm' THEN 'materialized view'
|
|
|
|
WHEN 'f' THEN 'foreign table'
|
|
|
|
END as "type"
|
2019-06-14 06:32:15 +02:00
|
|
|
FROM pg_catalog.pg_class c
|
2019-09-29 21:20:59 +02:00
|
|
|
LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
|
2019-06-14 06:32:15 +02:00
|
|
|
WHERE c.relkind IN ('r','v','m','f','')
|
2019-10-01 06:00:15 +02:00
|
|
|
AND n.nspname <> ('pg_catalog')
|
|
|
|
AND n.nspname <> ('information_schema')
|
|
|
|
AND n.nspname !~ ('^pg_toast')
|
2019-09-29 21:20:59 +02:00
|
|
|
AND pg_catalog.pg_table_is_visible(c.oid);`
|
2019-06-14 06:32:15 +02:00
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
var tables []DBTable
|
2019-06-14 06:32:15 +02:00
|
|
|
|
2019-09-26 06:35:31 +02:00
|
|
|
rows, err := dbc.Query(context.Background(), sqlStmt)
|
2019-06-14 06:32:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error fetching tables: %s", err)
|
|
|
|
}
|
2019-09-26 06:35:31 +02:00
|
|
|
defer rows.Close()
|
2019-06-14 06:32:15 +02:00
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
for i := 0; rows.Next(); i++ {
|
|
|
|
t := DBTable{ID: i}
|
2019-09-26 06:35:31 +02:00
|
|
|
err = rows.Scan(&t.Name, &t.Type)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-09 07:48:18 +01:00
|
|
|
t.Key = strings.ToLower(t.Name)
|
|
|
|
tables = append(tables, t)
|
2019-09-26 06:35:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return tables, nil
|
2019-06-14 06:32:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type DBColumn struct {
|
2019-10-01 06:00:15 +02:00
|
|
|
ID int16
|
2019-09-26 06:35:31 +02:00
|
|
|
Name string
|
2019-12-09 07:48:18 +01:00
|
|
|
Key string
|
2019-09-26 06:35:31 +02:00
|
|
|
Type string
|
2019-12-09 07:48:18 +01:00
|
|
|
Array bool
|
2019-09-26 06:35:31 +02:00
|
|
|
NotNull bool
|
|
|
|
PrimaryKey bool
|
|
|
|
UniqueKey bool
|
|
|
|
FKeyTable string
|
2019-10-01 06:00:15 +02:00
|
|
|
FKeyColID []int16
|
2019-09-26 06:35:31 +02:00
|
|
|
fKeyColID pgtype.Int2Array
|
2019-06-14 06:32:15 +02:00
|
|
|
}
|
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
func GetColumns(dbc *pgxpool.Conn, schema, table string) ([]DBColumn, error) {
|
2019-06-14 06:32:15 +02:00
|
|
|
sqlStmt := `
|
2019-09-29 21:20:59 +02:00
|
|
|
SELECT
|
|
|
|
f.attnum AS id,
|
|
|
|
f.attname AS name,
|
|
|
|
f.attnotnull AS notnull,
|
|
|
|
pg_catalog.format_type(f.atttypid,f.atttypmod) AS type,
|
2019-12-09 07:48:18 +01:00
|
|
|
CASE
|
|
|
|
WHEN f.attndims != 0 THEN true
|
|
|
|
ELSE false
|
|
|
|
END AS array,
|
2019-09-29 21:20:59 +02:00
|
|
|
CASE
|
|
|
|
WHEN p.contype = ('p'::char) THEN true
|
|
|
|
ELSE false
|
|
|
|
END AS primarykey,
|
|
|
|
CASE
|
|
|
|
WHEN p.contype = ('u'::char) THEN true
|
|
|
|
ELSE false
|
|
|
|
END AS uniquekey,
|
|
|
|
CASE
|
|
|
|
WHEN p.contype = ('f'::char) THEN g.relname
|
|
|
|
ELSE ''::text
|
|
|
|
END AS foreignkey,
|
|
|
|
CASE
|
|
|
|
WHEN p.contype = ('f'::char) THEN p.confkey
|
|
|
|
ELSE ARRAY[]::int2[]
|
|
|
|
END AS foreignkey_fieldnum
|
|
|
|
FROM pg_attribute f
|
|
|
|
JOIN pg_class c ON c.oid = f.attrelid
|
|
|
|
LEFT JOIN pg_attrdef d ON d.adrelid = c.oid AND d.adnum = f.attnum
|
|
|
|
LEFT JOIN pg_namespace n ON n.oid = c.relnamespace
|
|
|
|
LEFT JOIN pg_constraint p ON p.conrelid = c.oid AND f.attnum = ANY (p.conkey)
|
|
|
|
LEFT JOIN pg_class AS g ON p.confrelid = g.oid
|
|
|
|
WHERE c.relkind = ('r'::char)
|
|
|
|
AND n.nspname = $1 -- Replace with Schema name
|
|
|
|
AND c.relname = $2 -- Replace with table name
|
|
|
|
AND f.attnum > 0
|
|
|
|
AND f.attisdropped = false
|
|
|
|
ORDER BY id;`
|
2019-09-26 06:35:31 +02:00
|
|
|
|
|
|
|
rows, err := dbc.Query(context.Background(), sqlStmt, schema, table)
|
2019-06-14 06:32:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("error fetching columns: %s", err)
|
|
|
|
}
|
2019-09-26 06:35:31 +02:00
|
|
|
defer rows.Close()
|
2019-06-14 06:32:15 +02:00
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
cmap := make(map[int16]DBColumn)
|
2019-09-29 21:20:59 +02:00
|
|
|
|
2019-09-26 06:35:31 +02:00
|
|
|
for rows.Next() {
|
|
|
|
c := DBColumn{}
|
2019-12-12 06:47:56 +01:00
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
err = rows.Scan(&c.ID, &c.Name, &c.NotNull, &c.Type, &c.Array, &c.PrimaryKey, &c.UniqueKey, &c.FKeyTable, &c.fKeyColID)
|
2019-09-26 06:35:31 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-09-29 21:20:59 +02:00
|
|
|
|
|
|
|
if v, ok := cmap[c.ID]; ok {
|
|
|
|
if c.PrimaryKey {
|
|
|
|
v.PrimaryKey = true
|
|
|
|
}
|
|
|
|
if c.NotNull {
|
|
|
|
v.NotNull = true
|
|
|
|
}
|
|
|
|
if c.UniqueKey {
|
|
|
|
v.UniqueKey = true
|
|
|
|
}
|
2019-12-09 07:48:18 +01:00
|
|
|
if c.Array {
|
|
|
|
v.Array = true
|
|
|
|
}
|
2019-12-12 06:47:56 +01:00
|
|
|
if len(c.FKeyTable) != 0 {
|
|
|
|
v.FKeyTable = c.FKeyTable
|
|
|
|
}
|
|
|
|
if c.fKeyColID.Elements != nil {
|
|
|
|
v.fKeyColID = c.fKeyColID
|
|
|
|
err := v.fKeyColID.AssignTo(&v.FKeyColID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cmap[c.ID] = v
|
2019-09-29 21:20:59 +02:00
|
|
|
} else {
|
2019-10-01 06:00:15 +02:00
|
|
|
err := c.fKeyColID.AssignTo(&c.FKeyColID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-12-09 07:48:18 +01:00
|
|
|
c.Key = strings.ToLower(c.Name)
|
|
|
|
cmap[c.ID] = c
|
2019-09-29 21:20:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-09 07:48:18 +01:00
|
|
|
cols := make([]DBColumn, 0, len(cmap))
|
2019-12-12 06:47:56 +01:00
|
|
|
for i := range cmap {
|
|
|
|
cols = append(cols, cmap[i])
|
2019-06-14 06:32:15 +02:00
|
|
|
}
|
|
|
|
|
2019-09-26 06:35:31 +02:00
|
|
|
return cols, nil
|
2019-06-14 06:32:15 +02:00
|
|
|
}
|