ace8ea26f1
Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
66 lines
1.2 KiB
Go
66 lines
1.2 KiB
Go
package stdlib
|
|
|
|
import (
|
|
"context"
|
|
"embed"
|
|
"fmt"
|
|
"io/fs"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
|
|
"github.com/gofrs/flock"
|
|
)
|
|
|
|
var (
|
|
// FS contains the filesystem of the stdlib.
|
|
//go:embed **/*.cue **/*/*.cue
|
|
FS embed.FS
|
|
|
|
PackageName = "alpha.dagger.io"
|
|
Path = path.Join("cue.mod", "pkg", PackageName)
|
|
lockFilePath = path.Join("cue.mod", "dagger.lock")
|
|
)
|
|
|
|
func Vendor(ctx context.Context, mod string) error {
|
|
fileLock := flock.New(path.Join(mod, lockFilePath))
|
|
if err := fileLock.Lock(); err != nil {
|
|
return err
|
|
}
|
|
|
|
defer fileLock.Unlock()
|
|
|
|
// Remove any existing copy of the universe
|
|
if err := os.RemoveAll(path.Join(mod, Path)); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Write the current version
|
|
return fs.WalkDir(FS, ".", func(p string, entry fs.DirEntry, err error) error {
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !entry.Type().IsRegular() {
|
|
return nil
|
|
}
|
|
|
|
if filepath.Ext(entry.Name()) != ".cue" {
|
|
return nil
|
|
}
|
|
|
|
contents, err := fs.ReadFile(FS, p)
|
|
if err != nil {
|
|
return fmt.Errorf("%s: %w", p, err)
|
|
}
|
|
|
|
overlayPath := path.Join(mod, Path, p)
|
|
|
|
if err := os.MkdirAll(filepath.Dir(overlayPath), 0755); err != nil {
|
|
return err
|
|
}
|
|
|
|
return os.WriteFile(overlayPath, contents, 0600)
|
|
})
|
|
}
|