-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e343ea9
commit ac7392b
Showing
2 changed files
with
197 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
package runner | ||
|
||
import ( | ||
"archive/tar" | ||
"context" | ||
"encoding/hex" | ||
"errors" | ||
"io" | ||
"io/fs" | ||
"math/rand" | ||
"path" | ||
"strings" | ||
|
||
git "github.com/go-git/go-git/v5" | ||
config "github.com/go-git/go-git/v5/config" | ||
"github.com/go-git/go-git/v5/plumbing" | ||
"github.com/go-git/go-git/v5/plumbing/object" | ||
"github.com/go-git/go-git/v5/plumbing/transport" | ||
"github.com/go-git/go-git/v5/plumbing/transport/http" | ||
) | ||
|
||
type ActionCache interface { | ||
Fetch(ctx context.Context, cacheDir, url, ref, token string) (string, error) | ||
GetTarArchive(ctx context.Context, cacheDir, sha, fpath string) (io.ReadCloser, error) | ||
} | ||
|
||
type GoGitActionCache struct { | ||
Path string | ||
} | ||
|
||
func (c GoGitActionCache) Fetch(ctx context.Context, cacheDir, url, ref, token string) (string, error) { | ||
gitPath := path.Join(c.Path, safeFilename(cacheDir)+".git") | ||
gogitrepo, err := git.PlainInit(gitPath, true) | ||
if errors.Is(err, git.ErrRepositoryAlreadyExists) { | ||
gogitrepo, err = git.PlainOpen(gitPath) | ||
} | ||
if err != nil { | ||
return "", err | ||
} | ||
tmpBranch := make([]byte, 12) | ||
rand.Read(tmpBranch) | ||
branchName := hex.EncodeToString(tmpBranch) | ||
var refSpec config.RefSpec | ||
spec := config.RefSpec(ref + ":" + branchName) | ||
tagOrSha := false | ||
if spec.IsExactSHA1() { | ||
refSpec = spec | ||
} else if strings.HasPrefix(ref, "refs/") { | ||
refSpec = config.RefSpec(ref + ":refs/heads/" + branchName) | ||
} else { | ||
tagOrSha = true | ||
refSpec = config.RefSpec("refs/*/" + ref + ":refs/heads/*/" + branchName) | ||
} | ||
var auth transport.AuthMethod | ||
if token != "" { | ||
auth = &http.BasicAuth{ | ||
Username: "token", | ||
Password: token, | ||
} | ||
} | ||
remote, err := gogitrepo.CreateRemoteAnonymous(&config.RemoteConfig{ | ||
Name: "anonymous", | ||
URLs: []string{ | ||
url, | ||
}, | ||
}) | ||
if err != nil { | ||
return "", err | ||
} | ||
defer func() { | ||
if refs, err := gogitrepo.References(); err == nil { | ||
refs.ForEach(func(r *plumbing.Reference) error { | ||
if strings.Contains(r.Name().String(), branchName) { | ||
return gogitrepo.DeleteBranch(r.Name().String()) | ||
} | ||
return nil | ||
}) | ||
} | ||
}() | ||
if err := remote.FetchContext(ctx, &git.FetchOptions{ | ||
RefSpecs: []config.RefSpec{ | ||
refSpec, | ||
}, | ||
Auth: auth, | ||
Force: true, | ||
}); err != nil { | ||
return "", err | ||
} | ||
if tagOrSha { | ||
for _, prefix := range []string{"refs/heads/tags/", "refs/heads/heads/"} { | ||
hash, err := gogitrepo.ResolveRevision(plumbing.Revision(prefix + branchName)) | ||
if err == nil { | ||
return hash.String(), nil | ||
} | ||
} | ||
} | ||
hash, err := gogitrepo.ResolveRevision(plumbing.Revision(branchName)) | ||
if err != nil { | ||
return "", err | ||
} | ||
return hash.String(), nil | ||
} | ||
|
||
func (c GoGitActionCache) GetTarArchive(ctx context.Context, cacheDir, sha, fpath string) (io.ReadCloser, error) { | ||
gitPath := path.Join(c.Path, safeFilename(cacheDir)+".git") | ||
gogitrepo, err := git.PlainOpen(gitPath) | ||
if err != nil { | ||
return nil, err | ||
} | ||
commit, err := gogitrepo.CommitObject(plumbing.NewHash(sha)) | ||
if err != nil { | ||
return nil, err | ||
} | ||
files, err := commit.Files() | ||
if err != nil { | ||
return nil, err | ||
} | ||
rpipe, wpipe := io.Pipe() | ||
go func() { | ||
defer wpipe.Close() | ||
tw := tar.NewWriter(wpipe) | ||
fcpath := path.Clean(fpath) | ||
files.ForEach(func(f *object.File) error { | ||
name := f.Name | ||
if strings.HasPrefix(name, fcpath+"/") { | ||
name = name[len(fcpath)+1:] | ||
} else if fcpath != "" && name != fcpath { | ||
return nil | ||
} | ||
fmode, err := f.Mode.ToOSFileMode() | ||
if err != nil { | ||
return err | ||
} | ||
if fmode&fs.ModeSymlink == fs.ModeSymlink { | ||
content, err := f.Contents() | ||
if err != nil { | ||
return err | ||
} | ||
return tw.WriteHeader(&tar.Header{ | ||
Name: name, | ||
Mode: int64(fmode), | ||
Linkname: content, | ||
}) | ||
} else { | ||
err = tw.WriteHeader(&tar.Header{ | ||
Name: name, | ||
Mode: int64(fmode), | ||
Size: f.Size, | ||
}) | ||
if err != nil { | ||
return err | ||
} | ||
reader, err := f.Reader() | ||
if err != nil { | ||
return err | ||
} | ||
_, err = io.Copy(tw, reader) | ||
return err | ||
} | ||
}) | ||
}() | ||
return rpipe, err | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package runner | ||
|
||
import ( | ||
"archive/tar" | ||
"bytes" | ||
"context" | ||
"io" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestActionCache(t *testing.T) { | ||
a := assert.New(t) | ||
cache := &GoGitActionCache{ | ||
Path: "C:\\Users\\Christopher\\Downloads\\act-windows-amd64 (1)\\github-act-runner\\act\\pkg\\runner\\testdata", | ||
} | ||
ctx := context.Background() | ||
sha, err := cache.Fetch(ctx, "christopherhx/script", "https://github.com/christopherhx/script", "main", "") | ||
a.NoError(err) | ||
a.NotEmpty(sha) | ||
atar, err := cache.GetTarArchive(ctx, "christopherhx/script", sha, "node_modules") | ||
a.NoError(err) | ||
a.NotEmpty(atar) | ||
mytar := tar.NewReader(atar) | ||
th, err := mytar.Next() | ||
a.NoError(err) | ||
a.NotEqual(0, th.Size) | ||
buf := &bytes.Buffer{} | ||
_, err = io.Copy(buf, mytar) | ||
a.NoError(err) | ||
str := buf.String() | ||
a.NotEmpty(str) | ||
} |