Files

372 lines
10 KiB
Go
Raw Permalink Normal View History

2016-08-11 11:35:46 -07:00
// Copyright 2016 The Gogs Authors. All rights reserved.
// Copyright 2018 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2016-08-11 20:23:25 +02:00
package repo
import (
"errors"
2019-12-20 18:07:12 +01:00
"net/http"
2025-02-23 20:33:43 +08:00
"strings"
2021-11-28 19:58:28 +08:00
"code.gitea.io/gitea/models/perm"
access_model "code.gitea.io/gitea/models/perm/access"
repo_model "code.gitea.io/gitea/models/repo"
user_model "code.gitea.io/gitea/models/user"
2019-05-11 18:21:34 +08:00
api "code.gitea.io/gitea/modules/structs"
2021-01-26 23:36:53 +08:00
"code.gitea.io/gitea/modules/web"
2020-01-24 19:00:29 +00:00
"code.gitea.io/gitea/routers/api/v1/utils"
"code.gitea.io/gitea/services/context"
2022-12-29 03:57:15 +01:00
"code.gitea.io/gitea/services/convert"
2024-11-22 07:44:48 -08:00
issue_service "code.gitea.io/gitea/services/issue"
pull_service "code.gitea.io/gitea/services/pull"
repo_service "code.gitea.io/gitea/services/repository"
2016-08-11 20:23:25 +02:00
)
2016-12-26 02:37:01 -05:00
// ListCollaborators list a repository's collaborators
func ListCollaborators(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /repos/{owner}/{repo}/collaborators repository repoListCollaborators
// ---
// summary: List a repository's collaborators
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// 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
// description: page size of results
2020-01-24 19:00:29 +00:00
// type: integer
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/UserList"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2024-03-04 09:16:03 +01:00
collaborators, total, err := repo_model.GetCollaborators(ctx, &repo_model.FindCollaborationOptions{
ListOptions: utils.GetListOptions(ctx),
RepoID: ctx.Repo.Repository.ID,
2024-01-15 10:19:25 +08:00
})
2016-12-26 02:37:01 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-26 02:37:01 -05:00
return
}
2021-08-12 14:43:08 +02:00
2016-12-26 02:37:01 -05:00
users := make([]*api.User, len(collaborators))
for i, collaborator := range collaborators {
users[i] = convert.ToUser(ctx, collaborator.User, ctx.Doer)
2016-12-26 02:37:01 -05:00
}
2021-08-12 14:43:08 +02:00
2024-03-04 09:16:03 +01:00
ctx.SetTotalCountHeader(total)
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, users)
2016-12-26 02:37:01 -05:00
}
// IsCollaborator check if a user is a collaborator of a repository
func IsCollaborator(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /repos/{owner}/{repo}/collaborators/{collaborator} repository repoCheckCollaborator
// ---
// summary: Check if a user is a collaborator of a repository
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: collaborator
// in: path
// description: username of the user to check for being a collaborator
2017-11-12 23:02:25 -08:00
// type: string
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
// "404":
2019-12-20 18:07:12 +01:00
// "$ref": "#/responses/notFound"
// "422":
// "$ref": "#/responses/validationError"
2024-12-24 21:47:45 +08:00
user, err := user_model.GetUserByName(ctx, ctx.PathParam("collaborator"))
2016-12-26 02:37:01 -05:00
if err != nil {
if user_model.IsErrUserNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusUnprocessableEntity, err)
2016-12-26 02:37:01 -05:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-26 02:37:01 -05:00
}
return
}
isColab, err := repo_model.IsCollaborator(ctx, ctx.Repo.Repository.ID, user.ID)
2016-12-26 02:37:01 -05:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-26 02:37:01 -05:00
return
}
if isColab {
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2016-12-26 02:37:01 -05:00
} else {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound()
2016-12-26 02:37:01 -05:00
}
}
// AddOrUpdateCollaborator add or update a collaborator to a repository
func AddOrUpdateCollaborator(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation PUT /repos/{owner}/{repo}/collaborators/{collaborator} repository repoAddCollaborator
// ---
// summary: Add or Update a collaborator to a repository
2017-11-12 23:02:25 -08:00
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: collaborator
// in: path
// description: username of the user to add or update as a collaborator
2017-11-12 23:02:25 -08:00
// type: string
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/AddCollaboratorOption"
// responses:
// "204":
// "$ref": "#/responses/empty"
2024-03-04 09:16:03 +01:00
// "403":
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
// "422":
// "$ref": "#/responses/validationError"
2021-01-26 23:36:53 +08:00
form := web.GetForm(ctx).(*api.AddCollaboratorOption)
2024-12-24 21:47:45 +08:00
collaborator, err := user_model.GetUserByName(ctx, ctx.PathParam("collaborator"))
2016-08-11 20:23:25 +02:00
if err != nil {
if user_model.IsErrUserNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusUnprocessableEntity, err)
2016-08-11 20:23:25 +02:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-08-11 20:23:25 +02:00
}
return
}
if !collaborator.IsActive {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(errors.New("collaborator's account is inactive"))
return
}
p := perm.AccessModeWrite
if form.Permission != nil {
2025-04-08 12:15:15 +08:00
p = perm.ParseAccessMode(*form.Permission, perm.AccessModeRead, perm.AccessModeWrite, perm.AccessModeAdmin)
}
if err := repo_service.AddOrUpdateCollaborator(ctx, ctx.Repo.Repository, collaborator, p); err != nil {
2024-03-04 09:16:03 +01:00
if errors.Is(err, user_model.ErrBlockedUser) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusForbidden, err)
2024-03-04 09:16:03 +01:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2024-03-04 09:16:03 +01:00
}
2016-08-11 20:23:25 +02:00
return
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2016-08-11 20:23:25 +02:00
}
2016-12-26 02:37:01 -05:00
// DeleteCollaborator delete a collaborator from a repository
func DeleteCollaborator(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation DELETE /repos/{owner}/{repo}/collaborators/{collaborator} repository repoDeleteCollaborator
// ---
// summary: Delete a collaborator from a repository
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: collaborator
// in: path
// description: username of the collaborator to delete
// type: string
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
// "422":
// "$ref": "#/responses/validationError"
2024-12-24 21:47:45 +08:00
collaborator, err := user_model.GetUserByName(ctx, ctx.PathParam("collaborator"))
2016-12-26 02:37:01 -05:00
if err != nil {
if user_model.IsErrUserNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusUnprocessableEntity, err)
2016-12-26 02:37:01 -05:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-26 02:37:01 -05:00
}
return
}
2024-03-04 09:16:03 +01:00
if err := repo_service.DeleteCollaboration(ctx, ctx.Repo.Repository, collaborator); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2016-12-26 02:37:01 -05:00
return
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2016-12-26 02:37:01 -05:00
}
// GetRepoPermissions gets repository permissions for a user
func GetRepoPermissions(ctx *context.APIContext) {
// swagger:operation GET /repos/{owner}/{repo}/collaborators/{collaborator}/permission repository repoGetRepoPermissions
// ---
// summary: Get repository permissions for a user
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// - name: collaborator
// in: path
// description: username of the collaborator whose permissions are to be obtained
// type: string
// required: true
// responses:
// "200":
// "$ref": "#/responses/RepoCollaboratorPermission"
// "404":
// "$ref": "#/responses/notFound"
// "403":
// "$ref": "#/responses/forbidden"
2025-02-23 20:33:43 +08:00
collaboratorUsername := ctx.PathParam("collaborator")
if !ctx.Doer.IsAdmin && !strings.EqualFold(ctx.Doer.LowerName, collaboratorUsername) && !ctx.IsUserRepoAdmin() {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusForbidden, "Only admins can query all permissions, repo admins can query all repo permissions, collaborators can query only their own")
return
}
2025-02-23 20:33:43 +08:00
collaborator, err := user_model.GetUserByName(ctx, collaboratorUsername)
if err != nil {
if user_model.IsErrUserNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusNotFound, err)
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
}
return
}
permission, err := access_model.GetIndividualUserRepoPermission(ctx, ctx.Repo.Repository, collaborator)
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
return
}
ctx.JSON(http.StatusOK, convert.ToUserAndPermission(ctx, collaborator, ctx.ContextUser, permission.AccessMode))
}
// GetReviewers return all users that can be requested to review in this repo
func GetReviewers(ctx *context.APIContext) {
// swagger:operation GET /repos/{owner}/{repo}/reviewers repository repoGetReviewers
// ---
// summary: Return all users that can be requested to review in this repo
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// responses:
// "200":
// "$ref": "#/responses/UserList"
// "404":
// "$ref": "#/responses/notFound"
2024-11-22 07:44:48 -08:00
canChooseReviewer := issue_service.CanDoerChangeReviewRequests(ctx, ctx.Doer, ctx.Repo.Repository, 0)
if !canChooseReviewer {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusForbidden, errors.New("doer has no permission to get reviewers"))
2024-11-22 07:44:48 -08:00
return
}
reviewers, err := pull_service.GetReviewers(ctx, ctx.Repo.Repository, ctx.Doer.ID, 0)
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
return
}
ctx.JSON(http.StatusOK, convert.ToUsers(ctx, ctx.Doer, reviewers))
}
// GetAssignees return all users that have write access and can be assigned to issues
func GetAssignees(ctx *context.APIContext) {
// swagger:operation GET /repos/{owner}/{repo}/assignees repository repoGetAssignees
// ---
// summary: Return all users that have write access and can be assigned to issues
// produces:
// - application/json
// parameters:
// - name: owner
// in: path
// description: owner of the repo
// type: string
// required: true
// - name: repo
// in: path
// description: name of the repo
// type: string
// required: true
// responses:
// "200":
// "$ref": "#/responses/UserList"
// "404":
// "$ref": "#/responses/notFound"
assignees, err := repo_model.GetRepoAssignees(ctx, ctx.Repo.Repository)
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
return
}
ctx.JSON(http.StatusOK, convert.ToUsers(ctx, ctx.Doer, assignees))
}