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"
|
|
|
|
|
2021-11-28 11:58:28 +00:00
|
|
|
"code.gitea.io/gitea/models/perm"
|
2022-05-11 10:09:36 +00:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2022-06-06 08:01:49 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2017-02-24 21:39:49 +00:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2020-12-02 21:38:30 +00:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
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.
|
2021-11-24 09:49:20 +00:00
|
|
|
func listUserRepos(ctx *context.APIContext, u *user_model.User, private bool) {
|
2020-06-13 11:35:59 +00:00
|
|
|
opts := utils.GetListOptions(ctx)
|
|
|
|
|
2022-06-06 08:01:49 +00:00
|
|
|
repos, count, err := repo_model.GetUserRepositories(&repo_model.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
|
|
|
|
2022-01-25 06:33:40 +00:00
|
|
|
if err := repos.LoadAttributes(); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "RepositoryList.LoadAttributes", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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 {
|
2022-11-19 08:12:33 +00:00
|
|
|
access, err := access_model.AccessLevel(ctx, ctx.Doer, 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
|
|
|
}
|
2022-03-22 07:03:22 +00:00
|
|
|
if ctx.IsSigned && ctx.Doer.IsAdmin || access >= perm.AccessModeRead {
|
2020-12-02 21:38:30 +00:00
|
|
|
apiRepos = append(apiRepos, convert.ToRepo(repos[i], access))
|
2018-11-23 21:23:27 +00:00
|
|
|
}
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
2020-06-13 11:35:59 +00:00
|
|
|
|
|
|
|
ctx.SetLinkHeader(int(count), opts.PageSize)
|
2021-08-12 12:43:08 +00:00
|
|
|
ctx.SetTotalCountHeader(count)
|
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
|
|
|
|
2019-10-23 18:46:32 +00:00
|
|
|
private := ctx.IsSigned
|
2022-03-26 09:04:22 +00:00
|
|
|
listUserRepos(ctx, ctx.ContextUser, 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
|
|
|
|
// ---
|
2021-07-21 16:49:10 +00:00
|
|
|
// summary: List the repos that the authenticated user owns
|
2017-11-13 07:02:25 +00:00
|
|
|
// 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
|
|
|
|
2022-06-06 08:01:49 +00:00
|
|
|
opts := &repo_model.SearchRepoOptions{
|
2020-06-13 11:35:59 +00:00
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
2022-03-22 07:03:22 +00:00
|
|
|
Actor: ctx.Doer,
|
|
|
|
OwnerID: ctx.Doer.ID,
|
2020-06-13 11:35:59 +00:00
|
|
|
Private: ctx.IsSigned,
|
|
|
|
IncludeDescription: true,
|
2017-07-10 11:07:39 +00:00
|
|
|
}
|
2020-06-13 11:35:59 +00:00
|
|
|
|
|
|
|
var err error
|
2022-11-19 08:12:33 +00:00
|
|
|
repos, count, err := repo_model.SearchRepository(ctx, 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 {
|
2022-03-22 15:22:54 +00:00
|
|
|
if err = repo.GetOwner(ctx); err != nil {
|
2020-06-13 11:35:59 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetOwner", err)
|
|
|
|
return
|
|
|
|
}
|
2022-11-19 08:12:33 +00:00
|
|
|
accessMode, err := access_model.AccessLevel(ctx, ctx.Doer, repo)
|
2020-06-13 11:35:59 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "AccessLevel", err)
|
|
|
|
}
|
2020-12-02 21:38:30 +00:00
|
|
|
results[i] = convert.ToRepo(repo, accessMode)
|
2017-02-24 21:39:49 +00:00
|
|
|
}
|
2020-06-13 11:35:59 +00:00
|
|
|
|
|
|
|
ctx.SetLinkHeader(int(count), opts.ListOptions.PageSize)
|
2021-08-12 12:43:08 +00:00
|
|
|
ctx.SetTotalCountHeader(count)
|
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
|
|
|
|
2021-11-19 11:41:40 +00:00
|
|
|
listUserRepos(ctx, ctx.Org.Organization.AsUser(), ctx.IsSigned)
|
2017-07-13 11:14:15 +00:00
|
|
|
}
|