2016-08-11 18:35:46 +00:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2018-11-28 11:26:14 +00:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2016-08-11 18:23:25 +00:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2018-08-07 10:01:06 +00:00
|
|
|
"errors"
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
2018-08-07 10:01:06 +00:00
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-10 04:41:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-05-11 10:21:34 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2020-01-24 19:00:29 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2016-08-11 18:23:25 +00:00
|
|
|
)
|
|
|
|
|
2016-12-26 07:37:01 +00:00
|
|
|
// ListCollaborators list a repository's collaborators
|
|
|
|
func ListCollaborators(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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
|
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/UserList"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2020-01-24 19:00:29 +00:00
|
|
|
collaborators, err := ctx.Repo.Repository.GetCollaborators(utils.GetListOptions(ctx))
|
2016-12-26 07:37:01 +00:00
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "ListCollaborators", err)
|
2016-12-26 07:37:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
users := make([]*api.User, len(collaborators))
|
|
|
|
for i, collaborator := range collaborators {
|
2021-03-27 16:45:26 +00:00
|
|
|
users[i] = convert.ToUser(collaborator.User, ctx.User)
|
2016-12-26 07:37:01 +00:00
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, users)
|
2016-12-26 07:37:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsCollaborator check if a user is a collaborator of a repository
|
|
|
|
func IsCollaborator(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 collaborator
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
// "404":
|
2019-12-20 17:07:12 +00:00
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
2016-12-26 07:37:01 +00:00
|
|
|
user, err := models.GetUserByName(ctx.Params(":collaborator"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2016-12-26 07:37:01 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserByName", err)
|
2016-12-26 07:37:01 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
isColab, err := ctx.Repo.Repository.IsCollaborator(user.ID)
|
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "IsCollaborator", err)
|
2016-12-26 07:37:01 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if isColab {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-12-26 07:37:01 +00:00
|
|
|
} else {
|
2019-03-19 02:29:43 +00:00
|
|
|
ctx.NotFound()
|
2016-12-26 07:37:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-13 07:02:25 +00:00
|
|
|
// AddCollaborator add a collaborator to a repository
|
2021-01-26 15:36:53 +00:00
|
|
|
func AddCollaborator(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00:00
|
|
|
// swagger:operation PUT /repos/{owner}/{repo}/collaborators/{collaborator} repository repoAddCollaborator
|
|
|
|
// ---
|
|
|
|
// summary: Add a collaborator to 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 add
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/AddCollaboratorOption"
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 17:07:12 +00:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.AddCollaboratorOption)
|
|
|
|
|
2016-08-11 18:23:25 +00:00
|
|
|
collaborator, err := models.GetUserByName(ctx.Params(":collaborator"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2016-08-11 18:23:25 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserByName", err)
|
2016-08-11 18:23:25 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-07 10:01:06 +00:00
|
|
|
if !collaborator.IsActive {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "InactiveCollaborator", errors.New("collaborator's account is inactive"))
|
2018-08-07 10:01:06 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-11 18:23:25 +00:00
|
|
|
if err := ctx.Repo.Repository.AddCollaborator(collaborator); err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "AddCollaborator", err)
|
2016-08-11 18:23:25 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-08-11 18:35:46 +00:00
|
|
|
if form.Permission != nil {
|
|
|
|
if err := ctx.Repo.Repository.ChangeCollaborationAccessMode(collaborator.ID, models.ParseAccessMode(*form.Permission)); err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "ChangeCollaborationAccessMode", err)
|
2016-08-11 18:35:46 +00:00
|
|
|
return
|
|
|
|
}
|
2016-08-11 18:23:25 +00:00
|
|
|
}
|
|
|
|
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-08-11 18:23:25 +00:00
|
|
|
}
|
2016-12-26 07:37:01 +00:00
|
|
|
|
|
|
|
// DeleteCollaborator delete a collaborator from a repository
|
|
|
|
func DeleteCollaborator(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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"
|
2019-12-20 17:07:12 +00:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
|
2016-12-26 07:37:01 +00:00
|
|
|
collaborator, err := models.GetUserByName(ctx.Params(":collaborator"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2016-12-26 07:37:01 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserByName", err)
|
2016-12-26 07:37:01 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ctx.Repo.Repository.DeleteCollaboration(collaborator.ID); err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteCollaboration", err)
|
2016-12-26 07:37:01 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-12-26 07:37:01 +00:00
|
|
|
}
|