forked from mirrors/homebox
5bbb969763
* remove repo for document tokens * remove schema for doc tokens * fix id template and generate cmd * schema updates * code gen * bump dependencies * fix broken migrations + add maintenance entry type * spelling * remove debug logger * implement repository layer * routes * API client * wip: maintenance log * remove depreciated call
43 lines
760 B
Go
43 lines
760 B
Go
package migrations
|
|
|
|
import (
|
|
"embed"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
//go:embed all:migrations
|
|
var Files embed.FS
|
|
|
|
// Write writes the embedded migrations to a temporary directory.
|
|
// It returns an error and a cleanup function. The cleanup function
|
|
// should be called when the migrations are no longer needed.
|
|
func Write(temp string) error {
|
|
err := os.MkdirAll(temp, 0755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fsDir, err := Files.ReadDir("migrations")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, f := range fsDir {
|
|
if f.IsDir() {
|
|
continue
|
|
}
|
|
|
|
b, err := Files.ReadFile(filepath.Join("migrations", f.Name()))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = os.WriteFile(filepath.Join(temp, f.Name()), b, 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|