-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.go
70 lines (58 loc) · 1.65 KB
/
example.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
package main
import (
"context"
"log"
"os"
"time"
"github.com/h44z/lightmigrate"
"github.com/h44z/lightmigrate-mongodb/mongodb"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
)
func main() {
mongoClient, err := newMongoClient("mongodb://user:[email protected]:27017/", 10*time.Second)
if err != nil {
log.Fatalf("unable to setup mongodb client: %v", err)
}
fsys := os.DirFS("examples")
source, err := lightmigrate.NewFsSource(fsys, "example-migrations")
if err != nil {
log.Fatalf("unable to setup source: %v", err)
}
defer source.Close()
driver, err := mongodb.NewDriver(mongoClient, "testdb",
//mongodb.WithTransactions(true),
mongodb.WithLocking(mongodb.LockingConfig{
Enabled: true,
}))
if err != nil {
log.Fatalf("unable to setup driver: %v", err)
}
defer driver.Close()
migrator, err := lightmigrate.NewMigrator(source, driver, lightmigrate.WithVerboseLogging(true))
if err != nil {
log.Fatalf("unable to setup migrator: %v", err)
}
err = migrator.Migrate(2) // Migrate to schema version 2 (the only possible version in the example-migrations folder)
if err != nil {
log.Fatalf("migration error: %v", err)
}
}
func newMongoClient(url string, timeout time.Duration) (*mongo.Client, error) {
client, err := mongo.NewClient(options.Client().ApplyURI(url))
if err != nil {
return nil, err
}
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()
err = client.Connect(ctx)
if err != nil {
return nil, err
}
err = client.Ping(ctx, readpref.Primary())
if err != nil {
return nil, err
}
return client, nil
}