Skip to content

Commit cbe7f52

Browse files
6543jasugunzeripath
authored
[API] Add affected files of commits to commit struct (#14579)
* Add files affected by a commit to gitea API -- similar to github * Add files affected by a commit to gitea API * Fix stupid error * Fix other stupid typo * Generate swagger tmpl * Comply with convert to git commit refacto * update swagger docs * extend test * format code * Update integrations/api_repo_git_commits_test.go * Update modules/convert/git_commit.go Co-authored-by: Laurent Cahour <laurent.cahour@dont-nod.com> Co-authored-by: zeripath <art27@cantab.net>
1 parent c11db35 commit cbe7f52

File tree

4 files changed

+62
-11
lines changed

4 files changed

+62
-11
lines changed

integrations/api_repo_git_commits_test.go

+18-6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ import (
1414
"github.com/stretchr/testify/assert"
1515
)
1616

17+
func compareCommitFiles(t *testing.T, expect []string, files []*api.CommitAffectedFiles) {
18+
var actual []string
19+
for i := range files {
20+
actual = append(actual, files[i].Filename)
21+
}
22+
assert.ElementsMatch(t, expect, actual)
23+
}
24+
1725
func TestAPIReposGitCommits(t *testing.T) {
1826
defer prepareTestEnv(t)()
1927
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
@@ -56,10 +64,13 @@ func TestAPIReposGitCommitList(t *testing.T) {
5664
var apiData []api.Commit
5765
DecodeJSON(t, resp, &apiData)
5866

59-
assert.Equal(t, 3, len(apiData))
60-
assert.Equal(t, "69554a64c1e6030f051e5c3f94bfbd773cd6a324", apiData[0].CommitMeta.SHA)
61-
assert.Equal(t, "27566bd5738fc8b4e3fef3c5e72cce608537bd95", apiData[1].CommitMeta.SHA)
62-
assert.Equal(t, "5099b81332712fe655e34e8dd63574f503f61811", apiData[2].CommitMeta.SHA)
67+
assert.Len(t, apiData, 3)
68+
assert.EqualValues(t, "69554a64c1e6030f051e5c3f94bfbd773cd6a324", apiData[0].CommitMeta.SHA)
69+
compareCommitFiles(t, []string{"readme.md"}, apiData[0].Files)
70+
assert.EqualValues(t, "27566bd5738fc8b4e3fef3c5e72cce608537bd95", apiData[1].CommitMeta.SHA)
71+
compareCommitFiles(t, []string{"readme.md"}, apiData[1].Files)
72+
assert.EqualValues(t, "5099b81332712fe655e34e8dd63574f503f61811", apiData[2].CommitMeta.SHA)
73+
compareCommitFiles(t, []string{"readme.md"}, apiData[2].Files)
6374
}
6475

6576
func TestAPIReposGitCommitListPage2Empty(t *testing.T) {
@@ -76,7 +87,7 @@ func TestAPIReposGitCommitListPage2Empty(t *testing.T) {
7687
var apiData []api.Commit
7788
DecodeJSON(t, resp, &apiData)
7889

79-
assert.Equal(t, 0, len(apiData))
90+
assert.Len(t, apiData, 0)
8091
}
8192

8293
func TestAPIReposGitCommitListDifferentBranch(t *testing.T) {
@@ -93,6 +104,7 @@ func TestAPIReposGitCommitListDifferentBranch(t *testing.T) {
93104
var apiData []api.Commit
94105
DecodeJSON(t, resp, &apiData)
95106

96-
assert.Equal(t, 1, len(apiData))
107+
assert.Len(t, apiData, 1)
97108
assert.Equal(t, "f27c2b2b03dcab38beaf89b0ab4ff61f6de63441", apiData[0].CommitMeta.SHA)
109+
compareCommitFiles(t, []string{"readme.md"}, apiData[0].Files)
98110
}

modules/convert/git_commit.go

+15
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,20 @@ func ToCommit(repo *models.Repository, commit *git.Commit, userCache map[string]
131131
}
132132
}
133133

134+
// Retrieve files affected by the commit
135+
fileStatus, err := git.GetCommitFileStatus(repo.RepoPath(), commit.ID.String())
136+
if err != nil {
137+
return nil, err
138+
}
139+
affectedFileList := make([]*api.CommitAffectedFiles, 0, len(fileStatus.Added)+len(fileStatus.Removed)+len(fileStatus.Modified))
140+
for _, files := range [][]string{fileStatus.Added, fileStatus.Removed, fileStatus.Modified} {
141+
for _, filename := range files {
142+
affectedFileList = append(affectedFileList, &api.CommitAffectedFiles{
143+
Filename: filename,
144+
})
145+
}
146+
}
147+
134148
return &api.Commit{
135149
CommitMeta: &api.CommitMeta{
136150
URL: repo.APIURL() + "/git/commits/" + commit.ID.String(),
@@ -162,5 +176,6 @@ func ToCommit(repo *models.Repository, commit *git.Commit, userCache map[string]
162176
Author: apiAuthor,
163177
Committer: apiCommitter,
164178
Parents: apiParents,
179+
Files: affectedFileList,
165180
}, nil
166181
}

modules/structs/repo_commit.go

+11-5
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,12 @@ type RepoCommit struct {
4242
// Commit contains information generated from a Git commit.
4343
type Commit struct {
4444
*CommitMeta
45-
HTMLURL string `json:"html_url"`
46-
RepoCommit *RepoCommit `json:"commit"`
47-
Author *User `json:"author"`
48-
Committer *User `json:"committer"`
49-
Parents []*CommitMeta `json:"parents"`
45+
HTMLURL string `json:"html_url"`
46+
RepoCommit *RepoCommit `json:"commit"`
47+
Author *User `json:"author"`
48+
Committer *User `json:"committer"`
49+
Parents []*CommitMeta `json:"parents"`
50+
Files []*CommitAffectedFiles `json:"files"`
5051
}
5152

5253
// CommitDateOptions store dates for GIT_AUTHOR_DATE and GIT_COMMITTER_DATE
@@ -56,3 +57,8 @@ type CommitDateOptions struct {
5657
// swagger:strfmt date-time
5758
Committer time.Time `json:"committer"`
5859
}
60+
61+
// CommitAffectedFiles store information about files affected by the commit
62+
type CommitAffectedFiles struct {
63+
Filename string `json:"filename"`
64+
}

templates/swagger/v1_json.tmpl

+18
Original file line numberDiff line numberDiff line change
@@ -11821,6 +11821,13 @@
1182111821
"format": "date-time",
1182211822
"x-go-name": "Created"
1182311823
},
11824+
"files": {
11825+
"type": "array",
11826+
"items": {
11827+
"$ref": "#/definitions/CommitAffectedFiles"
11828+
},
11829+
"x-go-name": "Files"
11830+
},
1182411831
"html_url": {
1182511832
"type": "string",
1182611833
"x-go-name": "HTMLURL"
@@ -11843,6 +11850,17 @@
1184311850
},
1184411851
"x-go-package": "code.gitea.io/gitea/modules/structs"
1184511852
},
11853+
"CommitAffectedFiles": {
11854+
"description": "CommitAffectedFiles store information about files affected by the commit",
11855+
"type": "object",
11856+
"properties": {
11857+
"filename": {
11858+
"type": "string",
11859+
"x-go-name": "Filename"
11860+
}
11861+
},
11862+
"x-go-package": "code.gitea.io/gitea/modules/structs"
11863+
},
1184611864
"CommitDateOptions": {
1184711865
"description": "CommitDateOptions store dates for GIT_AUTHOR_DATE and GIT_COMMITTER_DATE",
1184811866
"type": "object",

0 commit comments

Comments
 (0)