-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql-migration-loader.go
69 lines (55 loc) · 1.27 KB
/
sql-migration-loader.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
package migo
import (
"os"
"path/filepath"
"strings"
)
type MigrationLoader interface {
Load() ([]Migration, error)
}
type SQLMigrationsLoader struct {
path string
}
func NewSQLMigrationLoader(path string) *SQLMigrationsLoader {
return &SQLMigrationsLoader{
path: path,
}
}
func (l *SQLMigrationsLoader) Load() ([]Migration, error) {
files := map[string]os.FileInfo{}
removeSuffix := func(s string) string {
s = strings.Replace(s, ".up.sql", "", -1)
return strings.Replace(s, ".down.sql", "", -1)
}
err := filepath.Walk(l.path, func(path string, info os.FileInfo, err error) error {
if strings.HasSuffix(path, ".up.sql") || strings.HasSuffix(path, ".down.sql") {
files[removeSuffix(path)] = info
}
return nil
})
if err != nil {
panic(err)
}
migrations := []Migration{}
for fileName, file := range files {
version, err := VersionFromString(removeSuffix(file.Name()))
if err != nil {
panic(err)
}
migration := SQLMigration{
v: *version,
}
upfile, err := os.Open(fileName + ".up.sql")
if err != nil {
panic(err)
}
downfile, err := os.Open(fileName + ".down.sql")
if err != nil {
panic(err)
}
migration.UpFile = upfile
migration.DownFile = downfile
migrations = append(migrations, &migration)
}
return migrations, nil
}