forked from amacneil/dbmate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
278 lines (245 loc) · 6.5 KB
/
main.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package main
import (
"context"
"fmt"
"log"
"net"
"net/url"
"os"
"strings"
"time"
"github.com/amacneil/dbmate/pkg/dbmate"
"github.com/joho/godotenv"
"github.com/urfave/cli"
)
func main() {
loadDotEnv()
app := NewApp()
err := app.Run(os.Args)
if err != nil {
_, _ = fmt.Fprintf(os.Stderr, "Error: %s\n", err)
os.Exit(1)
}
}
// NewApp creates a new command line app
func NewApp() *cli.App {
app := cli.NewApp()
app.Name = "dbmate"
app.Usage = "A lightweight, framework-independent database migration tool."
app.Version = dbmate.Version
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "env, e",
Value: "DATABASE_URL",
Usage: "specify an environment variable containing the database URL",
},
cli.StringFlag{
Name: "hostvar",
Value: "DATABASE_HOST",
Usage: "specify the environment variable used to lookup the host",
},
cli.StringFlag{
Name: "uservar",
Value: "DATABASE_USER",
Usage: "specify the environment variable used to lookup the user",
},
cli.StringFlag{
Name: "passvar",
Value: "DATABASE_PASSWORD",
Usage: "specify the environment variable used to lookup the password",
},
cli.StringFlag{
Name: "drivervar",
Value: "DATABASE_DRIVER",
Usage: "specify the environment variable used to lookup the driver",
},
cli.StringFlag{
Name: "dbnamevar",
Value: "DATABASE_NAME",
Usage: "specify the environment variable used to lookup the database name",
},
cli.StringFlag{
Name: "dbportvar",
Value: "DATABASE_PORT",
Usage: "specify the environment variable used to lookup the database port",
},
cli.StringFlag{
Name: "migrations-dir, d",
Value: dbmate.DefaultMigrationsDir,
Usage: "specify the directory containing migration files",
},
cli.StringFlag{
Name: "schema-file, s",
Value: dbmate.DefaultSchemaFile,
Usage: "specify the schema file location",
},
cli.BoolFlag{
Name: "no-dump-schema",
Usage: "don't update the schema file on migrate/rollback",
},
}
app.Commands = []cli.Command{
{
Name: "new",
Aliases: []string{"n"},
Usage: "Generate a new migration file",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
name := c.Args().First()
return db.NewMigration(name)
}),
},
{
Name: "up",
Usage: "Create database (if necessary) and migrate to the latest version",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
return db.CreateAndMigrate()
}),
},
{
Name: "create",
Usage: "Create database",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
return db.Create()
}),
},
{
Name: "drop",
Usage: "Drop database (if it exists)",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
return db.Drop()
}),
},
{
Name: "migrate",
Usage: "Migrate to the latest version",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
return db.Migrate()
}),
},
{
Name: "rollback",
Aliases: []string{"down"},
Usage: "Rollback the most recent migration",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
return db.Rollback()
}),
},
{
Name: "dump",
Usage: "Write the database schema to disk",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
return db.DumpSchema()
}),
},
{
Name: "wait",
Usage: "Wait for the database to become available",
Action: action(func(db *dbmate.DB, c *cli.Context) error {
return db.Wait()
}),
},
}
return app
}
// load environment variables from .env file
func loadDotEnv() {
if _, err := os.Stat(".env"); err != nil {
return
}
if err := godotenv.Load(); err != nil {
log.Fatalf("Error loading .env file: %s", err.Error())
}
}
// action wraps a cli.ActionFunc with dbmate initialization logic
func action(f func(*dbmate.DB, *cli.Context) error) cli.ActionFunc {
return func(c *cli.Context) error {
u, err := getDatabaseURL(c)
if err != nil {
return err
}
db := dbmate.New(u)
db.AutoDumpSchema = !c.GlobalBool("no-dump-schema")
db.MigrationsDir = c.GlobalString("migrations-dir")
db.SchemaFile = c.GlobalString("schema-file")
return f(db, c)
}
}
// getDatabaseURL returns the current environment database url
func getDatabaseURL(c *cli.Context) (u *url.URL, err error) {
env := c.GlobalString("env")
value := os.Getenv(env)
if value == "" {
return constructDatabaseUrl(c)
}
return url.Parse(value)
}
func constructDatabaseUrl(c *cli.Context) (*url.URL, error) {
portvar := c.GlobalString("portvar")
namevar := c.GlobalString("dbnamevar")
drivervar := c.GlobalString("drivervar")
passvar := c.GlobalString("passvar")
uservar := c.GlobalString("uservar")
hostvar := c.GlobalString("hostvar")
port := readVarVal(portvar)
if port == "" {
port = "5432"
}
driver := readVarVal(drivervar)
if driver == "" {
driver = "postgres"
}
var err error
hostname := readVarVal(hostvar)
if strings.HasSuffix(hostname, ".consul") {
hostname, port, err = resolveHostPort(hostname)
if err != nil {
return nil, fmt.Errorf("failed to resolve DNS name %q. %s", hostname, err)
}
}
dsnUrl := fmt.Sprintf("%s://%s:%s@%s:%s/%s?sslmode=disable",
driver,
readVarVal(uservar),
readVarVal(passvar),
hostname,
port,
readVarVal(namevar))
return url.Parse(dsnUrl)
}
func readVarVal(v string) string {
return os.Getenv(os.Getenv(v))
}
func resolveHostPort(hostname string) (string, string, error) {
dnsServer := os.Getenv("NET_BRIDGE_GW_IP")
if dnsServer == "" {
addr := strings.Split(os.Getenv("CONSUL_HTTP_ADDR"), ":")
dnsServer = addr[0]
}
if dnsServer == "" {
dnsServer = "127.0.0.1"
}
log.Printf("resolving address %s using DNS server at %s", hostname, dnsServer)
resolver := net.Resolver{
Dial: func(ctx context.Context, network, address string) (net.Conn, error) {
dialer := net.Dialer{}
return dialer.DialContext(ctx, "udp", fmt.Sprintf("%s:%d", dnsServer, 53))
},
}
ctx, cancel := context.WithTimeout(context.Background(), 500*time.Millisecond)
defer cancel()
_, addrs, err := resolver.LookupSRV(ctx, "", "", hostname)
if err != nil {
return "", "", err
}
host, port := addrs[0].Target, fmt.Sprintf("%d", addrs[0].Port)
if strings.Contains(host, ".consul") {
rctx, rcancel := context.WithTimeout(context.Background(), 500*time.Millisecond)
defer rcancel()
ipAddr, err := resolver.LookupIPAddr(rctx, host)
if err != nil {
return "", "", fmt.Errorf("failed to resolve IP address for %s", host)
}
host = ipAddr[0].IP.String()
}
log.Printf("%s resolved to %s on port %s", hostname, host, port)
return host, port, nil
}