aboutsummaryrefslogtreecommitdiff
path: root/pkg/git/git.go
blob: 7ef23f74b726b769ed7f197bd3ec25b30c2363a7 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
package git

import (
	"errors"
	"fmt"
	"io"

	"github.com/go-git/go-git/v5"
	"github.com/go-git/go-git/v5/plumbing"
	"github.com/go-git/go-git/v5/plumbing/object"
)

var ()

var (
	MissingHeadErr = errors.New("Head not found")
)

type (
	GitRepository struct {
		path string
	}
)

func NewGitRepository(dir string) *GitRepository {
	return &GitRepository{
		path: dir,
	}
}

func (g *GitRepository) Path() string {
	return g.path
}

func (g *GitRepository) LastCommit() (*object.Commit, error) {
	repo, err := git.PlainOpen(g.path)
	if err != nil {
		return nil, err
	}

	ref, err := repo.Head()
	if err != nil {
		return nil, errors.Join(MissingHeadErr, err)
	}

	c, err := repo.CommitObject(ref.Hash())
	if err != nil {
		return nil, err
	}
	return c, nil
}

func (g *GitRepository) Commits() ([]*object.Commit, error) {
	repo, err := git.PlainOpen(g.path)
	if err != nil {
		return nil, err
	}

	ref, err := repo.Head()
	if err != nil {
		return nil, errors.Join(MissingHeadErr, err)
	}

	ci, err := repo.Log(&git.LogOptions{From: ref.Hash()})
	if err != nil {
		return nil, fmt.Errorf("commits from ref: %w", err)
	}

	commits := []*object.Commit{}
	// TODO: for now only load first 1000
	for x := 0; x < 1000; x++ {
		c, err := ci.Next()
		if err != nil && errors.Is(err, io.EOF) {
			break
		} else if err != nil {
			return nil, err
		}
		commits = append(commits, c)
	}
	if err != nil {
		return nil, err
	}

	return commits, nil
}

func (g *GitRepository) Tags() ([]*object.Tag, error) {
	repo, err := git.PlainOpen(g.path)
	if err != nil {
		return nil, err
	}

	ti, err := repo.TagObjects()
	if err != nil {
		return nil, err
	}

	tags := []*object.Tag{}
	err = ti.ForEach(func(t *object.Tag) error {
		tags = append(tags, t)
		return nil
	})
	if err != nil {
		return nil, err
	}

	return tags, nil
}

func (g *GitRepository) Branches() ([]*plumbing.Reference, error) {
	repo, err := git.PlainOpen(g.path)
	if err != nil {
		return nil, err
	}

	bs, err := repo.Branches()
	if err != nil {
		return nil, err
	}

	branches := []*plumbing.Reference{}
	err = bs.ForEach(func(ref *plumbing.Reference) error {
		branches = append(branches, ref)
		return nil
	})
	if err != nil {
		return nil, err
	}

	return branches, nil
}