2017-07-13 11:14:15 +00:00
|
|
|
// 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-24 21:39:49 +00:00
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
2020-06-13 11:35:59 +00:00
|
|
|
"strconv"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2017-02-24 21:39:49 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-05-11 10:21:34 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2020-01-24 19:00:29 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2017-02-24 21:39:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// listUserRepos - List the repositories owned by the given user.
|
2018-11-23 21:23:27 +00:00
|
|
|
func listUserRepos(ctx *context.APIContext, u *models.User, private bool) {
|
2020-06-13 11:35:59 +00:00
|
|
|
opts := utils.GetListOptions(ctx)
|
|
|
|
|
|
|
|
repos, count, err := models.GetUserRepositories(&models.SearchRepoOptions{
|
2020-01-24 19:00:29 +00:00
|
|
|
Actor: u,
|
|
|
|
Private: private,
|
2020-06-13 11:35:59 +00:00
|
|
|
ListOptions: opts,
|
2020-07-02 14:55:42 +00:00
|
|
|
OrderBy: "id ASC",
|
2020-01-24 19:00:29 +00:00
|
|
|
})
|
2017-02-24 21:39:49 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserRepositories", err)
|
2017-02-24 21:39:49 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-28 11:26:14 +00:00
|
|
|
|
2018-11-23 21:23:27 +00:00
|
|
|
apiRepos := make([]*api.Repository, 0, len(repos))
|
2017-07-10 11:07:39 +00:00
|
|
|
for i := range repos {
|
2018-11-28 11:26:14 +00:00
|
|
|
access, err := models.AccessLevel(ctx.User, repos[i])
|
2017-04-29 04:33:25 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "AccessLevel", err)
|
2017-07-10 11:07:39 +00:00
|
|
|
return
|
2017-04-29 04:33:25 +00:00
|
|
|
}
|
2018-11-23 21:23:27 +00:00
|
|
|
if ctx.IsSigned && ctx.User.IsAdmin || access >= models.AccessModeRead {
|
|
|
|
apiRepos = append(apiRepos, repos[i].APIFormat(access))
|
|
|
|
}
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
2020-06-13 11:35:59 +00:00
|
|
|
|
|
|
|
ctx.SetLinkHeader(int(count), opts.PageSize)
|
|
|
|
ctx.Header().Set("X-Total-Count", strconv.FormatInt(count, 10))
|
2020-08-13 17:18:18 +00:00
|
|
|
ctx.Header().Set("Access-Control-Expose-Headers", "X-Total-Count, Link")
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &apiRepos)
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 11:07:39 +00:00
|
|
|
// ListUserRepos - list the repos owned by the given user.
|
2017-02-24 21:39:49 +00:00
|
|
|
func ListUserRepos(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /users/{username}/repos user userListRepos
|
|
|
|
// ---
|
|
|
|
// summary: List the repos owned by the given user
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of user
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 19:00:29 +00:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2020-01-24 19:00:29 +00:00
|
|
|
// type: integer
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2017-02-24 21:39:49 +00:00
|
|
|
user := GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2019-10-23 18:46:32 +00:00
|
|
|
private := ctx.IsSigned
|
2018-11-23 21:23:27 +00:00
|
|
|
listUserRepos(ctx, user, private)
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
|
|
|
|
2017-07-10 11:07:39 +00:00
|
|
|
// ListMyRepos - list the repositories you own or have access to.
|
2017-02-24 21:39:49 +00:00
|
|
|
func ListMyRepos(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /user/repos user userCurrentListRepos
|
|
|
|
// ---
|
|
|
|
// summary: List the repos that the authenticated user owns or has access to
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2020-01-24 19:00:29 +00:00
|
|
|
// parameters:
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2020-01-24 19:00:29 +00:00
|
|
|
// type: integer
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2020-06-13 11:35:59 +00:00
|
|
|
opts := &models.SearchRepoOptions{
|
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
|
|
|
Actor: ctx.User,
|
|
|
|
OwnerID: ctx.User.ID,
|
|
|
|
Private: ctx.IsSigned,
|
|
|
|
IncludeDescription: true,
|
2017-07-10 11:07:39 +00:00
|
|
|
}
|
2020-06-13 11:35:59 +00:00
|
|
|
|
|
|
|
var err error
|
|
|
|
repos, count, err := models.SearchRepository(opts)
|
2017-02-24 21:39:49 +00:00
|
|
|
if err != nil {
|
2020-06-13 11:35:59 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "SearchRepository", err)
|
2017-07-10 11:07:39 +00:00
|
|
|
return
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
2017-07-10 11:07:39 +00:00
|
|
|
|
2020-06-13 11:35:59 +00:00
|
|
|
results := make([]*api.Repository, len(repos))
|
|
|
|
for i, repo := range repos {
|
|
|
|
if err = repo.GetOwner(); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetOwner", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
accessMode, err := models.AccessLevel(ctx.User, repo)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "AccessLevel", err)
|
|
|
|
}
|
|
|
|
results[i] = repo.APIFormat(accessMode)
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
2020-06-13 11:35:59 +00:00
|
|
|
|
|
|
|
ctx.SetLinkHeader(int(count), opts.ListOptions.PageSize)
|
|
|
|
ctx.Header().Set("X-Total-Count", strconv.FormatInt(count, 10))
|
2020-08-13 17:18:18 +00:00
|
|
|
ctx.Header().Set("Access-Control-Expose-Headers", "X-Total-Count, Link")
|
2020-06-13 11:35:59 +00:00
|
|
|
ctx.JSON(http.StatusOK, &results)
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
2017-07-13 11:14:15 +00:00
|
|
|
|
|
|
|
// ListOrgRepos - list the repositories of an organization.
|
|
|
|
func ListOrgRepos(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation GET /orgs/{org}/repos organization orgListRepos
|
|
|
|
// ---
|
|
|
|
// summary: List an organization's repos
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-24 19:00:29 +00:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2020-01-24 19:00:29 +00:00
|
|
|
// type: integer
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2018-11-23 21:23:27 +00:00
|
|
|
listUserRepos(ctx, ctx.Org.Organization, ctx.IsSigned)
|
2017-07-13 11:14:15 +00:00
|
|
|
}
|