-
Notifications
You must be signed in to change notification settings - Fork 927
/
schemamigration.go
126 lines (102 loc) · 2.92 KB
/
schemamigration.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package common
import (
"fmt"
"regexp"
"strings"
"time"
)
var (
createTableRegex = regexp.MustCompile(`(?i)create table if not exists ([0-9a-z_]*) *\(`)
alterTableAddColumnRegex = regexp.MustCompile(`(?i)alter table ([0-9a-z_]*) add column if not exists ([0-9a-z_]*)`)
addIndexRegex = regexp.MustCompile(`(?i)create (unique )?index if not exists ([0-9a-z_]*) on ([0-9a-z_]*)`)
)
func initSchema(schema string, name string) {
if confNoSchemaInit.GetBool() {
return
}
skip, err := checkSkipSchemaInit(schema, name)
if err != nil {
logger.WithError(err).Error("Failed checking we we should skip schema: ", schema)
}
if skip {
return
}
logger.Info("Schema initialization: ", name, ": not skipped")
// if strings.HasPrefix("create table if not exists", trimmedLower) {
// }else if strings.HasPrefix("alter table", prefix)
_, err = PQ.Exec(schema)
if err != nil {
UnlockRedisKey("schema_init")
logger.WithError(err).Fatal("failed initializing postgres db schema for ", name)
}
return
}
func checkSkipSchemaInit(schema string, name string) (exists bool, err error) {
trimmed := strings.TrimSpace(schema)
if matches := createTableRegex.FindAllStringSubmatch(trimmed, -1); len(matches) > 0 {
return TableExists(matches[0][1])
}
if matches := addIndexRegex.FindAllStringSubmatch(trimmed, -1); len(matches) > 0 {
return checkIndexExists(matches[0][3], matches[0][2])
}
if matches := alterTableAddColumnRegex.FindAllStringSubmatch(trimmed, -1); len(matches) > 0 {
return checkColumnExists(matches[0][1], matches[0][2])
}
return false, nil
}
func TableExists(table string) (b bool, err error) {
const query = `
SELECT EXISTS
(
SELECT 1
FROM information_schema.tables
WHERE table_schema = 'public'
AND table_name = $1
);`
err = PQ.QueryRow(query, table).Scan(&b)
return b, err
}
func checkIndexExists(table, index string) (b bool, err error) {
const query = `
SELECT EXISTS
(
SELECT 1
FROM
pg_class t,
pg_class i,
pg_index ix,
pg_attribute a
WHERE
t.oid = ix.indrelid
AND i.oid = ix.indexrelid
AND a.attrelid = t.oid
AND a.attnum = ANY(ix.indkey)
AND t.relkind = 'r'
AND t.relname = $1
AND i.relname = $2
);`
err = PQ.QueryRow(query, table, index).Scan(&b)
return b, err
}
func checkColumnExists(table, column string) (b bool, err error) {
const query = `
SELECT EXISTS
(
SELECT 1
FROM information_schema.columns
WHERE table_name=$1 and column_name=$2
);`
err = PQ.QueryRow(query, table, column).Scan(&b)
return b, err
}
func InitSchemas(name string, schemas ...string) {
if err := BlockingLockRedisKey("schema_init", time.Minute*10, 60*60); err != nil {
panic(err)
}
defer UnlockRedisKey("schema_init")
for i, v := range schemas {
actualName := fmt.Sprintf("%s[%d]", name, i)
initSchema(v, actualName)
}
return
}