aboutsummaryrefslogtreecommitdiff
path: root/pkg/service/git.go
blob: 9bf11f4e79cb77ae692820236f59db9bc9ea0453 (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
package service

import (
	"path"

	"git.gabrielgio.me/cerrado/pkg/config"
	"git.gabrielgio.me/cerrado/pkg/git"
	"github.com/go-git/go-git/v5/plumbing"
	"github.com/go-git/go-git/v5/plumbing/object"
)

type (
	Repository struct {
		Name              string
		Title             string
		LastCommitMessage string
		LastCommitDate    string
		Ref               string
	}

	GitService struct {
		configRepo configurationRepository
	}

	configurationRepository interface {
		List() []*config.GitRepositoryConfiguration
		GetByName(name string) *config.GitRepositoryConfiguration
	}
)

// TODO: make it configurable
const timeFormat = "2006.01.02 15:04:05"

func NewGitService(configRepo configurationRepository) *GitService {
	return &GitService{
		configRepo: configRepo,
	}
}

func (g *GitService) ListRepositories() ([]*Repository, error) {
	rs := g.configRepo.List()

	repos := make([]*Repository, len(rs))
	for i, r := range rs {
		repo, err := git.OpenRepository(r.Path)
		if err != nil {
			return nil, err
		}
		if err != nil {
			return nil, err
		}

		obj, err := repo.LastCommit()
		if err != nil {
			return nil, err
		}

		head, err := repo.Head()
		if err != nil {
			return nil, err
		}

		baseName := path.Base(r.Path)
		repos[i] = &Repository{
			Name:              baseName,
			Title:             baseName,
			LastCommitMessage: obj.Message,
			LastCommitDate:    obj.Author.When.Format(timeFormat),
			Ref:               head.Name().Short(),
		}
	}

	return repos, nil
}

func (g *GitService) ListCommits(name, ref string) ([]*object.Commit, error) {
	// TODO: handle nil
	r := g.configRepo.GetByName(name)

	repo, err := git.OpenRepository(r.Path)
	if err != nil {
		return nil, err
	}

	err = repo.SetRef(ref)
	if err != nil {
		return nil, err
	}
	return repo.Commits()
}

func (g *GitService) ListTags(name string) ([]*object.Tag, error) {
	// TODO: handle nil
	r := g.configRepo.GetByName(name)

	repo, err := git.OpenRepository(r.Path)
	if err != nil {
		return nil, err
	}
	return repo.Tags()
}

func (g *GitService) ListBranches(name string) ([]*plumbing.Reference, error) {
	// TODO: handle nil
	r := g.configRepo.GetByName(name)

	repo, err := git.OpenRepository(r.Path)
	if err != nil {
		return nil, err
	}
	return repo.Branches()
}

func (g *GitService) GetHead(name string) (*plumbing.Reference, error) {
	// TODO: handle nil
	r := g.configRepo.GetByName(name)

	repo, err := git.OpenRepository(r.Path)
	if err != nil {
		return nil, err
	}

	return repo.Head()
}