summaryrefslogtreecommitdiff
path: root/storage/migrate.go
blob: b05dddc1226707ba432056b4d084b8f47f122a6d (plain)
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
package storage

import (
	"embed"
	"fmt"
	"io/fs"
	"strings"

	_ "github.com/asg017/sqlite-vec-go-bindings/ncruces"
)

//go:embed migrations/*
var migrationsFS embed.FS

func (p *ProviderSQL) Migrate() {
	// Get the embedded filesystem
	migrationsDir, err := fs.Sub(migrationsFS, "migrations")
	if err != nil {
		p.logger.Error("Failed to get embedded migrations directory;", "error", err)
	}
	// List all .up.sql files
	files, err := migrationsFS.ReadDir("migrations")
	if err != nil {
		p.logger.Error("Failed to read migrations directory;", "error", err)
	}
	// Execute each .up.sql file
	for _, file := range files {
		if strings.HasSuffix(file.Name(), ".up.sql") {
			err := p.executeMigration(migrationsDir, file.Name())
			if err != nil {
				p.logger.Error("Failed to execute migration %s: %v", file.Name(), err)
				panic(err)
			}
		}
	}
	p.logger.Debug("All migrations executed successfully!")
}

func (p *ProviderSQL) executeMigration(migrationsDir fs.FS, fileName string) error {
	// Open the migration file
	migrationFile, err := migrationsDir.Open(fileName)
	if err != nil {
		return fmt.Errorf("failed to open migration file %s: %w", fileName, err)
	}
	defer migrationFile.Close()
	// Read the migration file content
	migrationContent, err := fs.ReadFile(migrationsDir, fileName)
	if err != nil {
		return fmt.Errorf("failed to read migration file %s: %w", fileName, err)
	}
	// Execute the migration content
	return p.executeSQL(migrationContent)
}

func (p *ProviderSQL) executeSQL(sqlContent []byte) error {
	// Connect to the database (example using a simple connection)
	err := p.s3Conn.Exec(string(sqlContent))
	if err != nil {
		return fmt.Errorf("failed to execute SQL: %w", err)
	}
	return nil
}