2017-07-13 16:44:15 +05:30
|
|
|
// 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.
|
|
|
|
|
2017-02-25 03:09:49 +05:30
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
api "code.gitea.io/sdk/gitea"
|
|
|
|
)
|
|
|
|
|
|
|
|
// listUserRepos - List the repositories owned by the given user.
|
|
|
|
func listUserRepos(ctx *context.APIContext, u *models.User) {
|
2017-07-10 16:37:39 +05:30
|
|
|
showPrivateRepos := ctx.IsSigned && (ctx.User.ID == u.ID || ctx.User.IsAdmin)
|
|
|
|
repos, err := models.GetUserRepositories(u.ID, showPrivateRepos, 1, u.NumRepos, "")
|
2017-02-25 03:09:49 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetUserRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
2017-07-10 16:37:39 +05:30
|
|
|
apiRepos := make([]*api.Repository, len(repos))
|
|
|
|
var ctxUserID int64
|
2017-04-29 10:03:25 +05:30
|
|
|
if ctx.User != nil {
|
2017-07-10 16:37:39 +05:30
|
|
|
ctxUserID = ctx.User.ID
|
|
|
|
}
|
|
|
|
for i := range repos {
|
|
|
|
access, err := models.AccessLevel(ctxUserID, repos[i])
|
2017-04-29 10:03:25 +05:30
|
|
|
if err != nil {
|
2017-07-10 16:37:39 +05:30
|
|
|
ctx.Error(500, "AccessLevel", err)
|
|
|
|
return
|
2017-04-29 10:03:25 +05:30
|
|
|
}
|
2017-07-10 16:37:39 +05:30
|
|
|
apiRepos[i] = repos[i].APIFormat(access)
|
2017-02-25 03:09:49 +05:30
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiRepos)
|
|
|
|
}
|
|
|
|
|
2017-07-10 16:37:39 +05:30
|
|
|
// ListUserRepos - list the repos owned by the given user.
|
2017-02-25 03:09:49 +05:30
|
|
|
func ListUserRepos(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /users/{username}/repos userListRepos
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: RepositoryList
|
|
|
|
// 500: error
|
|
|
|
|
2017-02-25 03:09:49 +05:30
|
|
|
user := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
listUserRepos(ctx, user)
|
|
|
|
}
|
|
|
|
|
2017-07-10 16:37:39 +05:30
|
|
|
// ListMyRepos - list the repositories you own or have access to.
|
2017-02-25 03:09:49 +05:30
|
|
|
func ListMyRepos(ctx *context.APIContext) {
|
2017-05-02 19:05:59 +05:30
|
|
|
// swagger:route GET /user/repos userCurrentListRepos
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: RepositoryList
|
|
|
|
// 500: error
|
2017-07-10 16:37:39 +05:30
|
|
|
ownRepos, err := models.GetUserRepositories(ctx.User.ID, true, 1, ctx.User.NumRepos, "")
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetUserRepositories", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
accessibleReposMap, err := ctx.User.GetRepositoryAccesses()
|
2017-02-25 03:09:49 +05:30
|
|
|
if err != nil {
|
2017-07-10 16:37:39 +05:30
|
|
|
ctx.Error(500, "GetRepositoryAccesses", err)
|
|
|
|
return
|
2017-02-25 03:09:49 +05:30
|
|
|
}
|
2017-07-10 16:37:39 +05:30
|
|
|
|
|
|
|
apiRepos := make([]*api.Repository, len(ownRepos)+len(accessibleReposMap))
|
|
|
|
for i := range ownRepos {
|
|
|
|
apiRepos[i] = ownRepos[i].APIFormat(models.AccessModeOwner)
|
|
|
|
}
|
|
|
|
i := len(ownRepos)
|
|
|
|
for repo, access := range accessibleReposMap {
|
|
|
|
apiRepos[i] = repo.APIFormat(access)
|
2017-02-25 03:09:49 +05:30
|
|
|
i++
|
|
|
|
}
|
2017-07-10 16:37:39 +05:30
|
|
|
ctx.JSON(200, &apiRepos)
|
2017-02-25 03:09:49 +05:30
|
|
|
}
|
2017-07-13 16:44:15 +05:30
|
|
|
|
|
|
|
// 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)
|
|
|
|
}
|