Skip to content

Commit

Permalink
API: support '/orgs/:org/repos' (#2047)
Browse files Browse the repository at this point in the history
* API: support '/orgs/:org/repos'
  • Loading branch information
awwalker authored and bkcsoft committed Jul 13, 2017
1 parent f011d6d commit 6a3c037
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 1 deletion.
21 changes: 21 additions & 0 deletions integrations/api_repo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,24 @@ func TestAPIViewRepo(t *testing.T) {
assert.EqualValues(t, 1, repo.ID)
assert.EqualValues(t, "repo1", repo.Name)
}

func TestAPIOrgRepos(t *testing.T) {
prepareTestEnv(t)
user := models.AssertExistsAndLoadBean(t, &models.User{ID: 2}).(*models.User)
// User3 is an Org. Check their repos.
sourceOrg := models.AssertExistsAndLoadBean(t, &models.User{ID: 3}).(*models.User)
// Login as User2.
session := loginUser(t, user.Name)

req := NewRequestf(t, "GET", "/api/v1/orgs/%s/repos", sourceOrg.Name)
resp := session.MakeRequest(t, req, http.StatusOK)

var apiRepos []*api.Repository
DecodeJSON(t, resp, &apiRepos)
expectedLen := models.GetCount(t, models.Repository{OwnerID: sourceOrg.ID},
models.Cond("is_private = ?", false))
assert.Len(t, apiRepos, expectedLen)
for _, repo := range apiRepos {
assert.False(t, repo.Private)
}
}
18 changes: 17 additions & 1 deletion public/swagger.v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,22 @@
}
}
},
"/orgs/{org}/repos": {
"get": {
"produces": [
"application/json"
],
"operationId": "orgListRepos",
"responses": {
"200": {
"$ref": "#/responses/RepositoryList"
},
"500": {
"$ref": "#/responses/error"
}
}
}
},
"/repos/search": {
"get": {
"produces": [
Expand Down Expand Up @@ -1357,4 +1373,4 @@
}
}
}
}
}
1 change: 1 addition & 0 deletions routers/api/v1/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@ func RegisterRoutes(m *macaron.Macaron) {
m.Get("/user/orgs", reqToken(), org.ListMyOrgs)
m.Get("/users/:username/orgs", org.ListUserOrgs)
m.Group("/orgs/:orgname", func() {
m.Get("/repos", user.ListOrgRepos)
m.Combo("").Get(org.Get).
Patch(reqToken(), reqOrgOwnership(), bind(api.EditOrgOption{}), org.Edit)
m.Group("/members", func() {
Expand Down
18 changes: 18 additions & 0 deletions routers/api/v1/user/repo.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package user

import (
Expand Down Expand Up @@ -80,3 +84,17 @@ func ListMyRepos(ctx *context.APIContext) {
}
ctx.JSON(200, &apiRepos)
}

// ListOrgRepos - list the repositories of an organization.
func ListOrgRepos(ctx *context.APIContext) {
// swagger:route GET /orgs/{org}/repos orgListRepos
//
// Produces:
// - application/json
//
// Responses:
// 200: RepositoryList
// 500: error

listUserRepos(ctx, ctx.Org.Organization)
}

0 comments on commit 6a3c037

Please sign in to comment.