-
Notifications
You must be signed in to change notification settings - Fork 803
Implement upload-server-info #896
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
git: implement upload-server-info. Fixes #731
This adds UpdateServerInfo along with a new go-git command to generate info files to help git dumb http serve refs and their objects. This also updates the docs to reflect this. Docs: https://git-scm.com/docs/git-update-server-info Fixes: #731
- Loading branch information
commit ce0b76e7674d683db547103bc773305129a0ded4
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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 main | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"github.com/go-git/go-git/v5" | ||
"github.com/go-git/go-git/v5/plumbing/serverinfo" | ||
"github.com/go-git/go-git/v5/storage/filesystem" | ||
) | ||
|
||
// CmdUpdateServerInfo command updates the server info files in the repository. | ||
// This is used by git http transport (dumb) to generate a list of available | ||
// refs for the repository. See: | ||
// https://git-scm.com/docs/git-update-server-info | ||
type CmdUpdateServerInfo struct { | ||
cmd | ||
} | ||
|
||
// Usage returns the usage of the command. | ||
func (CmdUpdateServerInfo) Usage() string { | ||
return fmt.Sprintf("within a git repository run: %s", os.Args[0]) | ||
} | ||
|
||
// Execute runs the command. | ||
func (c *CmdUpdateServerInfo) Execute(args []string) error { | ||
r, err := git.PlainOpen(".") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
fs := r.Storer.(*filesystem.Storage).Filesystem() | ||
return serverinfo.UpdateServerInfo(r.Storer, fs) | ||
} |
This file contains hidden or 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,14 @@ | ||
package reference | ||
|
||
import ( | ||
"sort" | ||
|
||
"github.com/go-git/go-git/v5/plumbing" | ||
) | ||
|
||
// Sort sorts the references by name to ensure a consistent order. | ||
func Sort(refs []*plumbing.Reference) { | ||
sort.Slice(refs, func(i, j int) bool { | ||
return refs[i].Name() < refs[j].Name() | ||
}) | ||
} |
This file contains hidden or 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,94 @@ | ||
package serverinfo | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/go-git/go-billy/v5" | ||
"github.com/go-git/go-git/v5" | ||
"github.com/go-git/go-git/v5/internal/reference" | ||
"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/storer" | ||
"github.com/go-git/go-git/v5/storage" | ||
) | ||
|
||
// UpdateServerInfo updates the server info files in the repository. | ||
// | ||
// It generates a list of available refs for the repository. | ||
// Used by git http transport (dumb), for more information refer to: | ||
// https://git-scm.com/book/id/v2/Git-Internals-Transfer-Protocols#_the_dumb_protocol | ||
func UpdateServerInfo(s storage.Storer, fs billy.Filesystem) error { | ||
pos, ok := s.(storer.PackedObjectStorer) | ||
if !ok { | ||
return git.ErrPackedObjectsNotSupported | ||
} | ||
|
||
infoRefs, err := fs.Create("info/refs") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
defer infoRefs.Close() | ||
|
||
refsIter, err := s.IterReferences() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
defer refsIter.Close() | ||
|
||
var refs []*plumbing.Reference | ||
if err := refsIter.ForEach(func(ref *plumbing.Reference) error { | ||
refs = append(refs, ref) | ||
return nil | ||
}); err != nil { | ||
return err | ||
} | ||
|
||
reference.Sort(refs) | ||
for _, ref := range refs { | ||
name := ref.Name() | ||
hash := ref.Hash() | ||
switch ref.Type() { | ||
case plumbing.SymbolicReference: | ||
if name == plumbing.HEAD { | ||
continue | ||
} | ||
ref, err := s.Reference(ref.Target()) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
hash = ref.Hash() | ||
fallthrough | ||
case plumbing.HashReference: | ||
fmt.Fprintf(infoRefs, "%s\t%s\n", hash, name) | ||
if name.IsTag() { | ||
tag, err := object.GetTag(s, hash) | ||
if err == nil { | ||
fmt.Fprintf(infoRefs, "%s\t%s^{}\n", tag.Target, name) | ||
} | ||
} | ||
} | ||
} | ||
|
||
infoPacks, err := fs.Create("objects/info/packs") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
defer infoPacks.Close() | ||
|
||
packs, err := pos.ObjectPacks() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
for _, p := range packs { | ||
fmt.Fprintf(infoPacks, "P pack-%s.pack\n", p) | ||
} | ||
|
||
fmt.Fprintln(infoPacks) | ||
|
||
return nil | ||
} |
This file contains hidden or 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,185 @@ | ||
package serverinfo | ||
|
||
import ( | ||
"io" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/go-git/go-billy/v5" | ||
"github.com/go-git/go-billy/v5/memfs" | ||
fixtures "github.com/go-git/go-git-fixtures/v4" | ||
"github.com/go-git/go-git/v5" | ||
"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/storer" | ||
"github.com/go-git/go-git/v5/storage" | ||
"github.com/go-git/go-git/v5/storage/memory" | ||
. "gopkg.in/check.v1" | ||
) | ||
|
||
type ServerInfoSuite struct{} | ||
|
||
var _ = Suite(&ServerInfoSuite{}) | ||
|
||
func Test(t *testing.T) { TestingT(t) } | ||
|
||
func (s *ServerInfoSuite) TestUpdateServerInfoInit(c *C) { | ||
fs := memfs.New() | ||
st := memory.NewStorage() | ||
r, err := git.Init(st, fs) | ||
c.Assert(err, IsNil) | ||
c.Assert(r, NotNil) | ||
|
||
err = UpdateServerInfo(st, fs) | ||
c.Assert(err, IsNil) | ||
} | ||
|
||
func assertInfoRefs(c *C, st storage.Storer, fs billy.Filesystem) { | ||
refsFile, err := fs.Open("info/refs") | ||
c.Assert(err, IsNil) | ||
|
||
defer refsFile.Close() | ||
bts, err := io.ReadAll(refsFile) | ||
c.Assert(err, IsNil) | ||
|
||
localRefs := make(map[plumbing.ReferenceName]plumbing.Hash) | ||
for _, line := range strings.Split(string(bts), "\n") { | ||
if line == "" { | ||
continue | ||
} | ||
parts := strings.Split(line, "\t") | ||
c.Assert(parts, HasLen, 2) | ||
hash := plumbing.NewHash(parts[0]) | ||
name := plumbing.ReferenceName(parts[1]) | ||
localRefs[name] = hash | ||
} | ||
|
||
refs, err := st.IterReferences() | ||
c.Assert(err, IsNil) | ||
|
||
err = refs.ForEach(func(ref *plumbing.Reference) error { | ||
name := ref.Name() | ||
hash := ref.Hash() | ||
switch ref.Type() { | ||
case plumbing.SymbolicReference: | ||
if name == plumbing.HEAD { | ||
return nil | ||
} | ||
ref, err := st.Reference(ref.Target()) | ||
c.Assert(err, IsNil) | ||
hash = ref.Hash() | ||
fallthrough | ||
case plumbing.HashReference: | ||
h, ok := localRefs[name] | ||
c.Assert(ok, Equals, true) | ||
c.Assert(h, Equals, hash) | ||
if name.IsTag() { | ||
tag, err := object.GetTag(st, hash) | ||
if err == nil { | ||
t, ok := localRefs[name+"^{}"] | ||
c.Assert(ok, Equals, true) | ||
c.Assert(t, Equals, tag.Target) | ||
} | ||
} | ||
} | ||
return nil | ||
}) | ||
|
||
c.Assert(err, IsNil) | ||
} | ||
|
||
func assertObjectPacks(c *C, st storage.Storer, fs billy.Filesystem) { | ||
infoPacks, err := fs.Open("objects/info/packs") | ||
c.Assert(err, IsNil) | ||
|
||
defer infoPacks.Close() | ||
bts, err := io.ReadAll(infoPacks) | ||
c.Assert(err, IsNil) | ||
|
||
pos, ok := st.(storer.PackedObjectStorer) | ||
c.Assert(ok, Equals, true) | ||
localPacks := make(map[string]struct{}) | ||
packs, err := pos.ObjectPacks() | ||
c.Assert(err, IsNil) | ||
|
||
for _, line := range strings.Split(string(bts), "\n") { | ||
if line == "" { | ||
continue | ||
} | ||
parts := strings.Split(line, " ") | ||
c.Assert(parts, HasLen, 2) | ||
pack := strings.TrimPrefix(parts[1], "pack-") | ||
pack = strings.TrimSuffix(pack, ".pack") | ||
localPacks[pack] = struct{}{} | ||
} | ||
|
||
for _, p := range packs { | ||
_, ok := localPacks[p.String()] | ||
c.Assert(ok, Equals, true) | ||
} | ||
} | ||
|
||
func (s *ServerInfoSuite) TestUpdateServerInfoTags(c *C) { | ||
fs := memfs.New() | ||
st := memory.NewStorage() | ||
r, err := git.Clone(st, fs, &git.CloneOptions{ | ||
URL: fixtures.ByURL("https://github.com/git-fixtures/tags.git").One().URL, | ||
}) | ||
c.Assert(err, IsNil) | ||
c.Assert(r, NotNil) | ||
|
||
err = UpdateServerInfo(st, fs) | ||
c.Assert(err, IsNil) | ||
|
||
assertInfoRefs(c, st, fs) | ||
assertObjectPacks(c, st, fs) | ||
} | ||
|
||
func (s *ServerInfoSuite) TestUpdateServerInfoBasic(c *C) { | ||
fs := memfs.New() | ||
st := memory.NewStorage() | ||
r, err := git.Clone(st, fs, &git.CloneOptions{ | ||
URL: fixtures.Basic().One().URL, | ||
}) | ||
c.Assert(err, IsNil) | ||
c.Assert(r, NotNil) | ||
|
||
err = UpdateServerInfo(st, fs) | ||
c.Assert(err, IsNil) | ||
|
||
assertInfoRefs(c, st, fs) | ||
assertObjectPacks(c, st, fs) | ||
} | ||
|
||
func (s *ServerInfoSuite) TestUpdateServerInfoBasicChange(c *C) { | ||
fs := memfs.New() | ||
st := memory.NewStorage() | ||
r, err := git.Clone(st, fs, &git.CloneOptions{ | ||
URL: fixtures.Basic().One().URL, | ||
}) | ||
c.Assert(err, IsNil) | ||
c.Assert(r, NotNil) | ||
|
||
err = UpdateServerInfo(st, fs) | ||
c.Assert(err, IsNil) | ||
|
||
assertInfoRefs(c, st, fs) | ||
assertObjectPacks(c, st, fs) | ||
|
||
head, err := r.Head() | ||
c.Assert(err, IsNil) | ||
|
||
ref := plumbing.NewHashReference("refs/heads/my-branch", head.Hash()) | ||
err = r.Storer.SetReference(ref) | ||
c.Assert(err, IsNil) | ||
|
||
_, err = r.CreateTag("test-tag", head.Hash(), &git.CreateTagOptions{ | ||
Message: "test-tag", | ||
}) | ||
c.Assert(err, IsNil) | ||
|
||
err = UpdateServerInfo(st, fs) | ||
|
||
assertInfoRefs(c, st, fs) | ||
assertObjectPacks(c, st, fs) | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.