2016-03-21 22:23:04 +05:30
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2019-01-17 06:09:50 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2016-03-21 22:23:04 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2022-01-05 09:07:00 +05:30
|
|
|
"errors"
|
2019-12-20 22:37:12 +05:30
|
|
|
"net/http"
|
2019-10-01 11:02:28 +05:30
|
|
|
|
2016-12-28 07:06:04 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
2022-03-29 11:59:02 +05:30
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-11-28 17:28:28 +05:30
|
|
|
"code.gitea.io/gitea/models/perm"
|
2022-05-11 15:39:36 +05:30
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-12-10 06:57:50 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-10 01:27:58 +05:30
|
|
|
unit_model "code.gitea.io/gitea/models/unit"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-10 10:11:51 +05:30
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-10-01 11:02:28 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-08-23 22:10:30 +05:30
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/web"
|
2017-01-20 10:46:10 +05:30
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2020-01-25 00:30:29 +05:30
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2022-08-25 08:01:57 +05:30
|
|
|
org_service "code.gitea.io/gitea/services/org"
|
2016-03-21 22:23:04 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// ListTeams list all the teams of an organization
|
2016-03-21 22:23:04 +05:30
|
|
|
func ListTeams(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /orgs/{org}/teams organization orgListTeams
|
|
|
|
// ---
|
|
|
|
// summary: List an organization's teams
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2017-11-13 12:32:25 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/TeamList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
teams, count, err := organization.SearchTeam(&organization.SearchTeamOptions{
|
2020-01-25 00:30:29 +05:30
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
2021-08-12 18:13:08 +05:30
|
|
|
OrgID: ctx.Org.Organization.ID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "LoadTeams", err)
|
2016-03-21 22:23:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:57:58 +05:30
|
|
|
apiTeams, err := convert.ToTeams(teams, false)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "ConvertToTeams", err)
|
|
|
|
return
|
2016-03-21 22:23:04 +05:30
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(count)
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, apiTeams)
|
2016-03-21 22:23:04 +05:30
|
|
|
}
|
2016-12-28 07:06:04 +05:30
|
|
|
|
2019-01-17 06:09:50 +05:30
|
|
|
// ListUserTeams list all the teams a user belongs to
|
|
|
|
func ListUserTeams(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /user/teams user userListTeams
|
|
|
|
// ---
|
|
|
|
// summary: List all the teams a user belongs to
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
2020-01-25 00:30:29 +05:30
|
|
|
// parameters:
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2019-01-17 06:09:50 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/TeamList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
teams, count, err := organization.SearchTeam(&organization.SearchTeamOptions{
|
2021-08-12 18:13:08 +05:30
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
2022-03-22 12:33:22 +05:30
|
|
|
UserID: ctx.Doer.ID,
|
2021-08-12 18:13:08 +05:30
|
|
|
})
|
2019-01-17 06:09:50 +05:30
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetUserTeams", err)
|
2019-01-17 06:09:50 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:57:58 +05:30
|
|
|
apiTeams, err := convert.ToTeams(teams, true)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "ConvertToTeams", err)
|
|
|
|
return
|
2019-01-17 06:09:50 +05:30
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(count)
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, apiTeams)
|
2019-01-17 06:09:50 +05:30
|
|
|
}
|
|
|
|
|
2016-12-28 07:06:04 +05:30
|
|
|
// GetTeam api for get a team
|
|
|
|
func GetTeam(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /teams/{id} organization orgGetTeam
|
|
|
|
// ---
|
|
|
|
// summary: Get a team
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team to get
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Team"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2022-05-13 22:57:58 +05:30
|
|
|
apiTeam, err := convert.ToTeam(ctx.Org.Team)
|
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
2022-01-05 09:07:00 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:57:58 +05:30
|
|
|
ctx.JSON(http.StatusOK, apiTeam)
|
2016-12-28 07:06:04 +05:30
|
|
|
}
|
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
func attachTeamUnits(team *organization.Team, units []string) {
|
2022-01-05 09:07:00 +05:30
|
|
|
unitTypes := unit_model.FindUnitTypes(units...)
|
2022-03-29 11:59:02 +05:30
|
|
|
team.Units = make([]*organization.TeamUnit, 0, len(units))
|
2022-01-05 09:07:00 +05:30
|
|
|
for _, tp := range unitTypes {
|
2022-03-29 11:59:02 +05:30
|
|
|
team.Units = append(team.Units, &organization.TeamUnit{
|
2022-01-05 09:07:00 +05:30
|
|
|
OrgID: team.OrgID,
|
|
|
|
Type: tp,
|
|
|
|
AccessMode: team.AccessMode,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertUnitsMap(unitsMap map[string]string) map[unit_model.Type]perm.AccessMode {
|
|
|
|
res := make(map[unit_model.Type]perm.AccessMode, len(unitsMap))
|
|
|
|
for unitKey, p := range unitsMap {
|
|
|
|
res[unit_model.TypeFromKey(unitKey)] = perm.ParseAccessMode(p)
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
func attachTeamUnitsMap(team *organization.Team, unitsMap map[string]string) {
|
|
|
|
team.Units = make([]*organization.TeamUnit, 0, len(unitsMap))
|
2022-01-05 09:07:00 +05:30
|
|
|
for unitKey, p := range unitsMap {
|
2022-03-29 11:59:02 +05:30
|
|
|
team.Units = append(team.Units, &organization.TeamUnit{
|
2022-01-05 09:07:00 +05:30
|
|
|
OrgID: team.OrgID,
|
|
|
|
Type: unit_model.TypeFromKey(unitKey),
|
|
|
|
AccessMode: perm.ParseAccessMode(p),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-20 10:46:10 +05:30
|
|
|
// CreateTeam api for create a team
|
2021-01-26 21:06:53 +05:30
|
|
|
func CreateTeam(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation POST /orgs/{org}/teams organization orgCreateTeam
|
|
|
|
// ---
|
|
|
|
// summary: Create a team
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateTeamOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Team"
|
2019-12-20 22:37:12 +05:30
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-01-26 21:06:53 +05:30
|
|
|
form := web.GetForm(ctx).(*api.CreateTeamOption)
|
2022-01-05 09:07:00 +05:30
|
|
|
p := perm.ParseAccessMode(form.Permission)
|
|
|
|
if p < perm.AccessModeAdmin && len(form.UnitsMap) > 0 {
|
|
|
|
p = unit_model.MinUnitAccessMode(convertUnitsMap(form.UnitsMap))
|
|
|
|
}
|
2022-03-29 11:59:02 +05:30
|
|
|
team := &organization.Team{
|
2019-11-06 15:07:14 +05:30
|
|
|
OrgID: ctx.Org.Organization.ID,
|
|
|
|
Name: form.Name,
|
|
|
|
Description: form.Description,
|
|
|
|
IncludesAllRepositories: form.IncludesAllRepositories,
|
2019-11-20 16:57:49 +05:30
|
|
|
CanCreateOrgRepo: form.CanCreateOrgRepo,
|
2022-01-05 09:07:00 +05:30
|
|
|
AccessMode: p,
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
2018-11-11 01:15:32 +05:30
|
|
|
|
2022-01-05 09:07:00 +05:30
|
|
|
if team.AccessMode < perm.AccessModeAdmin {
|
|
|
|
if len(form.UnitsMap) > 0 {
|
|
|
|
attachTeamUnitsMap(team, form.UnitsMap)
|
|
|
|
} else if len(form.Units) > 0 {
|
|
|
|
attachTeamUnits(team, form.Units)
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "getTeamUnits", errors.New("units permission should not be empty"))
|
|
|
|
return
|
2018-11-11 01:15:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-20 10:46:10 +05:30
|
|
|
if err := models.NewTeam(team); err != nil {
|
2022-03-29 11:59:02 +05:30
|
|
|
if organization.IsErrTeamAlreadyExist(err) {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2017-01-20 10:46:10 +05:30
|
|
|
} else {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "NewTeam", err)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:57:58 +05:30
|
|
|
apiTeam, err := convert.ToTeam(team)
|
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(http.StatusCreated, apiTeam)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// EditTeam api for edit a team
|
2021-01-26 21:06:53 +05:30
|
|
|
func EditTeam(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation PATCH /teams/{id} organization orgEditTeam
|
|
|
|
// ---
|
|
|
|
// summary: Edit a team
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team to edit
|
|
|
|
// type: integer
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditTeamOption"
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Team"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2021-01-26 21:06:53 +05:30
|
|
|
form := web.GetForm(ctx).(*api.EditTeamOption)
|
2018-04-29 10:52:57 +05:30
|
|
|
team := ctx.Org.Team
|
2020-01-09 18:45:14 +05:30
|
|
|
if err := team.GetUnits(); err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.CanCreateOrgRepo != nil {
|
2022-08-18 14:28:21 +05:30
|
|
|
team.CanCreateOrgRepo = team.IsOwnerTeam() || *form.CanCreateOrgRepo
|
2020-01-09 18:45:14 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if len(form.Name) > 0 {
|
|
|
|
team.Name = form.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.Description != nil {
|
|
|
|
team.Description = *form.Description
|
|
|
|
}
|
2018-11-11 01:15:32 +05:30
|
|
|
|
2019-11-06 15:07:14 +05:30
|
|
|
isAuthChanged := false
|
|
|
|
isIncludeAllChanged := false
|
2020-01-09 18:45:14 +05:30
|
|
|
if !team.IsOwnerTeam() && len(form.Permission) != 0 {
|
2019-11-06 15:07:14 +05:30
|
|
|
// Validate permission level.
|
2022-01-05 09:07:00 +05:30
|
|
|
p := perm.ParseAccessMode(form.Permission)
|
|
|
|
if p < perm.AccessModeAdmin && len(form.UnitsMap) > 0 {
|
|
|
|
p = unit_model.MinUnitAccessMode(convertUnitsMap(form.UnitsMap))
|
|
|
|
}
|
2019-11-06 15:07:14 +05:30
|
|
|
|
2022-01-05 09:07:00 +05:30
|
|
|
if team.AccessMode != p {
|
2019-11-06 15:07:14 +05:30
|
|
|
isAuthChanged = true
|
2022-01-05 09:07:00 +05:30
|
|
|
team.AccessMode = p
|
2019-11-06 15:07:14 +05:30
|
|
|
}
|
|
|
|
|
2020-01-09 18:45:14 +05:30
|
|
|
if form.IncludesAllRepositories != nil {
|
2019-11-06 15:07:14 +05:30
|
|
|
isIncludeAllChanged = true
|
2020-01-09 18:45:14 +05:30
|
|
|
team.IncludesAllRepositories = *form.IncludesAllRepositories
|
2019-11-06 15:07:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 09:07:00 +05:30
|
|
|
if team.AccessMode < perm.AccessModeAdmin {
|
|
|
|
if len(form.UnitsMap) > 0 {
|
|
|
|
attachTeamUnitsMap(team, form.UnitsMap)
|
|
|
|
} else if len(form.Units) > 0 {
|
|
|
|
attachTeamUnits(team, form.Units)
|
2018-11-11 01:15:32 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-06 15:07:14 +05:30
|
|
|
if err := models.UpdateTeam(team, isAuthChanged, isIncludeAllChanged); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "EditTeam", err)
|
2017-01-20 10:46:10 +05:30
|
|
|
return
|
|
|
|
}
|
2022-05-13 22:57:58 +05:30
|
|
|
|
|
|
|
apiTeam, err := convert.ToTeam(team)
|
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(http.StatusOK, apiTeam)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteTeam api for delete a team
|
|
|
|
func DeleteTeam(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation DELETE /teams/{id} organization orgDeleteTeam
|
|
|
|
// ---
|
|
|
|
// summary: Delete a team
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team to delete
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// description: team deleted
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2017-01-20 10:46:10 +05:30
|
|
|
if err := models.DeleteTeam(ctx.Org.Team); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteTeam", err)
|
2017-01-20 10:46:10 +05:30
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// GetTeamMembers api for get a team's members
|
|
|
|
func GetTeamMembers(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /teams/{id}/members organization orgListTeamMembers
|
|
|
|
// ---
|
|
|
|
// summary: List a team's members
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2017-11-13 12:32:25 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
isMember, err := organization.IsOrganizationMember(ctx, ctx.Org.Team.OrgID, ctx.Doer.ID)
|
2017-12-21 13:13:26 +05:30
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "IsOrganizationMember", err)
|
2017-12-21 13:13:26 +05:30
|
|
|
return
|
2022-03-22 12:33:22 +05:30
|
|
|
} else if !isMember && !ctx.Doer.IsAdmin {
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound()
|
2017-01-20 10:46:10 +05:30
|
|
|
return
|
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
teamMembers, err := organization.GetTeamMembers(ctx, &organization.SearchMembersOptions{
|
2020-01-25 00:30:29 +05:30
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
2022-03-29 11:59:02 +05:30
|
|
|
TeamID: ctx.Org.Team.ID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetTeamMembers", err)
|
2017-01-20 10:46:10 +05:30
|
|
|
return
|
|
|
|
}
|
2022-03-29 11:59:02 +05:30
|
|
|
|
2022-04-11 18:19:49 +05:30
|
|
|
members := make([]*api.User, len(teamMembers))
|
2022-03-29 11:59:02 +05:30
|
|
|
for i, member := range teamMembers {
|
2022-03-22 12:33:22 +05:30
|
|
|
members[i] = convert.ToUser(member, ctx.Doer)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(int64(ctx.Org.Team.NumMembers))
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, members)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
|
|
|
|
2019-01-17 06:09:50 +05:30
|
|
|
// GetTeamMember api for get a particular member of team
|
|
|
|
func GetTeamMember(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /teams/{id}/members/{username} organization orgListTeamMember
|
|
|
|
// ---
|
|
|
|
// summary: List a particular member of team
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
|
|
|
// format: int64
|
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the member to list
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/User"
|
2019-12-20 22:37:12 +05:30
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
2019-01-17 06:09:50 +05:30
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2019-09-15 17:52:02 +05:30
|
|
|
teamID := ctx.ParamsInt64("teamid")
|
2022-03-29 11:59:02 +05:30
|
|
|
isTeamMember, err := organization.IsUserInTeams(ctx, u.ID, []int64{teamID})
|
2019-09-15 17:52:02 +05:30
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "IsUserInTeams", err)
|
2019-09-15 17:52:02 +05:30
|
|
|
return
|
|
|
|
} else if !isTeamMember {
|
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 12:33:22 +05:30
|
|
|
ctx.JSON(http.StatusOK, convert.ToUser(u, ctx.Doer))
|
2019-01-17 06:09:50 +05:30
|
|
|
}
|
|
|
|
|
2017-01-20 10:46:10 +05:30
|
|
|
// AddTeamMember api for add a member to a team
|
|
|
|
func AddTeamMember(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation PUT /teams/{id}/members/{username} organization orgAddTeamMember
|
|
|
|
// ---
|
|
|
|
// summary: Add a team member
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user to add
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 22:37:12 +05:30
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
2017-01-20 10:46:10 +05:30
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-03-29 11:59:02 +05:30
|
|
|
if err := models.AddTeamMember(ctx.Org.Team, u.ID); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "AddMember", err)
|
2017-01-20 10:46:10 +05:30
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveTeamMember api for remove one member from a team
|
|
|
|
func RemoveTeamMember(ctx *context.APIContext) {
|
2018-06-12 20:29:22 +05:30
|
|
|
// swagger:operation DELETE /teams/{id}/members/{username} organization orgRemoveTeamMember
|
2017-11-13 12:32:25 +05:30
|
|
|
// ---
|
|
|
|
// summary: Remove a team member
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user to remove
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 22:37:12 +05:30
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
2017-01-20 10:46:10 +05:30
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
if err := models.RemoveTeamMember(ctx.Org.Team, u.ID); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "RemoveTeamMember", err)
|
2017-01-20 10:46:10 +05:30
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-20 10:46:10 +05:30
|
|
|
}
|
2017-01-26 17:24:04 +05:30
|
|
|
|
|
|
|
// GetTeamRepos api for get a team's repos
|
|
|
|
func GetTeamRepos(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// swagger:operation GET /teams/{id}/repos organization orgListTeamRepos
|
|
|
|
// ---
|
|
|
|
// summary: List a team's repos
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2017-11-13 12:32:25 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2017-01-26 17:24:04 +05:30
|
|
|
team := ctx.Org.Team
|
2022-03-29 11:59:02 +05:30
|
|
|
teamRepos, err := organization.GetTeamRepositories(ctx, &organization.SearchTeamRepoOptions{
|
2020-01-25 00:30:29 +05:30
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
2022-03-29 11:59:02 +05:30
|
|
|
TeamID: team.ID,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetTeamRepos", err)
|
2022-03-29 11:59:02 +05:30
|
|
|
return
|
2017-01-26 17:24:04 +05:30
|
|
|
}
|
2022-04-20 16:13:26 +05:30
|
|
|
repos := make([]*api.Repository, len(teamRepos))
|
2022-03-29 11:59:02 +05:30
|
|
|
for i, repo := range teamRepos {
|
2022-11-19 13:42:33 +05:30
|
|
|
access, err := access_model.AccessLevel(ctx, ctx.Doer, repo)
|
2017-01-26 17:24:04 +05:30
|
|
|
if err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetTeamRepos", err)
|
2017-01-26 17:24:04 +05:30
|
|
|
return
|
|
|
|
}
|
2020-12-03 03:08:30 +05:30
|
|
|
repos[i] = convert.ToRepo(repo, access)
|
2017-01-26 17:24:04 +05:30
|
|
|
}
|
2021-12-15 11:09:34 +05:30
|
|
|
ctx.SetTotalCountHeader(int64(team.NumRepos))
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, repos)
|
2017-01-26 17:24:04 +05:30
|
|
|
}
|
|
|
|
|
2022-05-01 21:09:04 +05:30
|
|
|
// GetTeamRepo api for get a particular repo of team
|
|
|
|
func GetTeamRepo(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /teams/{id}/repos/{org}/{repo} organization orgListTeamRepo
|
|
|
|
// ---
|
|
|
|
// summary: List a particular repo of team
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
|
|
|
// format: int64
|
|
|
|
// required: true
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: organization that owns the repo to list
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to list
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Repository"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
|
|
|
|
|
|
|
repo := getRepositoryByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !organization.HasTeamRepo(ctx, ctx.Org.Team.OrgID, ctx.Org.Team.ID, repo.ID) {
|
|
|
|
ctx.NotFound()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-11-19 13:42:33 +05:30
|
|
|
access, err := access_model.AccessLevel(ctx, ctx.Doer, repo)
|
2022-05-01 21:09:04 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetTeamRepos", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(http.StatusOK, convert.ToRepo(repo, access))
|
|
|
|
}
|
|
|
|
|
2017-01-26 17:24:04 +05:30
|
|
|
// getRepositoryByParams get repository by a team's organization ID and repo name
|
2021-12-10 06:57:50 +05:30
|
|
|
func getRepositoryByParams(ctx *context.APIContext) *repo_model.Repository {
|
|
|
|
repo, err := repo_model.GetRepositoryByName(ctx.Org.Team.OrgID, ctx.Params(":reponame"))
|
2017-01-26 17:24:04 +05:30
|
|
|
if err != nil {
|
2021-12-10 06:57:50 +05:30
|
|
|
if repo_model.IsErrRepoNotExist(err) {
|
2019-03-19 07:59:43 +05:30
|
|
|
ctx.NotFound()
|
2017-01-26 17:24:04 +05:30
|
|
|
} else {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetRepositoryByName", err)
|
2017-01-26 17:24:04 +05:30
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return repo
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddTeamRepository api for adding a repository to a team
|
|
|
|
func AddTeamRepository(ctx *context.APIContext) {
|
2018-06-12 20:29:22 +05:30
|
|
|
// swagger:operation PUT /teams/{id}/repos/{org}/{repo} organization orgAddTeamRepository
|
2017-11-13 12:32:25 +05:30
|
|
|
// ---
|
|
|
|
// summary: Add a repository to a team
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: organization that owns the repo to add
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to add
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 22:37:12 +05:30
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
|
2017-01-26 17:24:04 +05:30
|
|
|
repo := getRepositoryByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-11-19 13:42:33 +05:30
|
|
|
if access, err := access_model.AccessLevel(ctx, ctx.Doer, repo); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "AccessLevel", err)
|
2017-01-26 17:24:04 +05:30
|
|
|
return
|
2021-11-28 17:28:28 +05:30
|
|
|
} else if access < perm.AccessModeAdmin {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusForbidden, "", "Must have admin-level access to the repository")
|
2017-01-26 17:24:04 +05:30
|
|
|
return
|
|
|
|
}
|
2022-08-25 08:01:57 +05:30
|
|
|
if err := org_service.TeamAddRepository(ctx.Org.Team, repo); err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "TeamAddRepository", err)
|
2017-01-26 17:24:04 +05:30
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-26 17:24:04 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveTeamRepository api for removing a repository from a team
|
|
|
|
func RemoveTeamRepository(ctx *context.APIContext) {
|
2018-06-12 20:29:22 +05:30
|
|
|
// swagger:operation DELETE /teams/{id}/repos/{org}/{repo} organization orgRemoveTeamRepository
|
2017-11-13 12:32:25 +05:30
|
|
|
// ---
|
|
|
|
// summary: Remove a repository from a team
|
|
|
|
// description: This does not delete the repository, it only removes the
|
|
|
|
// repository from the team.
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
2018-10-21 09:10:42 +05:30
|
|
|
// format: int64
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: organization that owns the repo to remove
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to remove
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 22:37:12 +05:30
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
|
2017-01-26 17:24:04 +05:30
|
|
|
repo := getRepositoryByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-11-19 13:42:33 +05:30
|
|
|
if access, err := access_model.AccessLevel(ctx, ctx.Doer, repo); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "AccessLevel", err)
|
2017-01-26 17:24:04 +05:30
|
|
|
return
|
2021-11-28 17:28:28 +05:30
|
|
|
} else if access < perm.AccessModeAdmin {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusForbidden, "", "Must have admin-level access to the repository")
|
2017-01-26 17:24:04 +05:30
|
|
|
return
|
|
|
|
}
|
2022-03-29 11:59:02 +05:30
|
|
|
if err := models.RemoveRepository(ctx.Org.Team, repo.ID); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "RemoveRepository", err)
|
2017-01-26 17:24:04 +05:30
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-01-26 17:24:04 +05:30
|
|
|
}
|
2019-10-01 11:02:28 +05:30
|
|
|
|
|
|
|
// SearchTeam api for searching teams
|
|
|
|
func SearchTeam(ctx *context.APIContext) {
|
|
|
|
// swagger:operation GET /orgs/{org}/teams/search organization teamSearch
|
|
|
|
// ---
|
|
|
|
// summary: Search for teams within an organization
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of the organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: q
|
|
|
|
// in: query
|
|
|
|
// description: keywords to search
|
|
|
|
// type: string
|
|
|
|
// - name: include_desc
|
|
|
|
// in: query
|
|
|
|
// description: include search within team description (defaults to true)
|
|
|
|
// type: boolean
|
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2019-10-01 11:02:28 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// description: "SearchResults of a successful search"
|
|
|
|
// schema:
|
|
|
|
// type: object
|
|
|
|
// properties:
|
|
|
|
// ok:
|
|
|
|
// type: boolean
|
|
|
|
// data:
|
|
|
|
// type: array
|
|
|
|
// items:
|
|
|
|
// "$ref": "#/definitions/Team"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2020-06-21 13:52:06 +05:30
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
opts := &organization.SearchTeamOptions{
|
2021-08-11 20:38:52 +05:30
|
|
|
Keyword: ctx.FormTrim("q"),
|
2019-10-01 11:02:28 +05:30
|
|
|
OrgID: ctx.Org.Organization.ID,
|
2021-08-11 06:01:13 +05:30
|
|
|
IncludeDesc: ctx.FormString("include_desc") == "" || ctx.FormBool("include_desc"),
|
2020-06-21 13:52:06 +05:30
|
|
|
ListOptions: listOptions,
|
2019-10-01 11:02:28 +05:30
|
|
|
}
|
|
|
|
|
2022-09-19 17:32:29 +05:30
|
|
|
// Only admin is allowd to search for all teams
|
|
|
|
if !ctx.Doer.IsAdmin {
|
|
|
|
opts.UserID = ctx.Doer.ID
|
|
|
|
}
|
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
teams, maxResults, err := organization.SearchTeam(opts)
|
2019-10-01 11:02:28 +05:30
|
|
|
if err != nil {
|
|
|
|
log.Error("SearchTeam failed: %v", err)
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
|
2019-10-01 11:02:28 +05:30
|
|
|
"ok": false,
|
|
|
|
"error": "SearchTeam internal failure",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-13 22:57:58 +05:30
|
|
|
apiTeams, err := convert.ToTeams(teams, false)
|
|
|
|
if err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
2019-10-01 11:02:28 +05:30
|
|
|
}
|
|
|
|
|
2020-06-21 13:52:06 +05:30
|
|
|
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
|
2021-08-12 18:13:08 +05:30
|
|
|
ctx.SetTotalCountHeader(maxResults)
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, map[string]interface{}{
|
2019-10-01 11:02:28 +05:30
|
|
|
"ok": true,
|
|
|
|
"data": apiTeams,
|
|
|
|
})
|
|
|
|
}
|