|
@ -9,15 +9,18 @@ import ( |
|
|
// listUserRepos - List the repositories owned by the given user.
|
|
|
// listUserRepos - List the repositories owned by the given user.
|
|
|
func listUserRepos(ctx *context.APIContext, u *models.User) { |
|
|
func listUserRepos(ctx *context.APIContext, u *models.User) { |
|
|
userID := u.ID |
|
|
userID := u.ID |
|
|
showPrivateRepos := (ctx.User.ID == userID || ctx.User.IsAdmin) && ctx.IsSigned |
|
|
|
|
|
|
|
|
showPrivateRepos := ctx.IsSigned && (ctx.User.ID == userID || ctx.User.IsAdmin) |
|
|
ownRepos, err := models.GetUserRepositories(userID, showPrivateRepos, 1, u.NumRepos, "") |
|
|
ownRepos, err := models.GetUserRepositories(userID, showPrivateRepos, 1, u.NumRepos, "") |
|
|
if err != nil { |
|
|
if err != nil { |
|
|
ctx.Error(500, "GetUserRepositories", err) |
|
|
ctx.Error(500, "GetUserRepositories", err) |
|
|
return |
|
|
return |
|
|
} |
|
|
} |
|
|
accessibleRepos, err := getAccessibleRepos(ctx) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
ctx.Error(500, "GetAccessibleRepos", err) |
|
|
|
|
|
|
|
|
var accessibleRepos []*api.Repository |
|
|
|
|
|
if ctx.User != nil { |
|
|
|
|
|
accessibleRepos, err = getAccessibleRepos(ctx) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
ctx.Error(500, "GetAccessibleRepos", err) |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
apiRepos := make([]*api.Repository, len(ownRepos)+len(accessibleRepos)) |
|
|
apiRepos := make([]*api.Repository, len(ownRepos)+len(accessibleRepos)) |
|
|
// Set owned repositories.
|
|
|
// Set owned repositories.
|
|
|