2016-03-21 17:53:04 +01:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2019-01-17 01:39:50 +01:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2016-03-21 17:53:04 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2019-05-11 12:21:34 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2016-03-21 17:53:04 +01:00
|
|
|
|
2016-12-28 02:36:04 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2017-01-20 06:16:10 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2016-03-21 17:53:04 +01:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ListTeams list all the teams of an organization
|
2016-03-21 17:53:04 +01:00
|
|
|
func ListTeams(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/TeamList"
|
2016-03-25 23:04:02 +01:00
|
|
|
org := ctx.Org.Organization
|
2016-03-21 17:53:04 +01:00
|
|
|
if err := org.GetTeams(); err != nil {
|
|
|
|
ctx.Error(500, "GetTeams", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiTeams := make([]*api.Team, len(org.Teams))
|
|
|
|
for i := range org.Teams {
|
2019-03-19 22:50:06 +01:00
|
|
|
if err := org.Teams[i].GetUnits(); err != nil {
|
|
|
|
ctx.Error(500, "GetUnits", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-03-21 17:53:04 +01:00
|
|
|
apiTeams[i] = convert.ToTeam(org.Teams[i])
|
|
|
|
}
|
|
|
|
ctx.JSON(200, apiTeams)
|
|
|
|
}
|
2016-12-28 02:36:04 +01:00
|
|
|
|
2019-01-17 01:39:50 +01:00
|
|
|
// 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
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/TeamList"
|
|
|
|
teams, err := models.GetUserTeams(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetUserTeams", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cache := make(map[int64]*api.Organization)
|
|
|
|
apiTeams := make([]*api.Team, len(teams))
|
|
|
|
for i := range teams {
|
|
|
|
apiOrg, ok := cache[teams[i].OrgID]
|
|
|
|
if !ok {
|
|
|
|
org, err := models.GetUserByID(teams[i].OrgID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetUserByID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
apiOrg = convert.ToOrganization(org)
|
|
|
|
cache[teams[i].OrgID] = apiOrg
|
|
|
|
}
|
|
|
|
apiTeams[i] = convert.ToTeam(teams[i])
|
|
|
|
apiTeams[i].Organization = apiOrg
|
|
|
|
}
|
|
|
|
ctx.JSON(200, apiTeams)
|
|
|
|
}
|
|
|
|
|
2016-12-28 02:36:04 +01:00
|
|
|
// GetTeam api for get a team
|
|
|
|
func GetTeam(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Team"
|
2017-01-20 06:16:10 +01:00
|
|
|
ctx.JSON(200, convert.ToTeam(ctx.Org.Team))
|
2016-12-28 02:36:04 +01:00
|
|
|
}
|
|
|
|
|
2017-01-20 06:16:10 +01:00
|
|
|
// CreateTeam api for create a team
|
|
|
|
func CreateTeam(ctx *context.APIContext, form api.CreateTeamOption) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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"
|
2017-01-20 06:16:10 +01:00
|
|
|
team := &models.Team{
|
|
|
|
OrgID: ctx.Org.Organization.ID,
|
|
|
|
Name: form.Name,
|
|
|
|
Description: form.Description,
|
|
|
|
Authorize: models.ParseAccessMode(form.Permission),
|
|
|
|
}
|
2018-11-10 20:45:32 +01:00
|
|
|
|
|
|
|
unitTypes := models.FindUnitTypes(form.Units...)
|
|
|
|
|
|
|
|
if team.Authorize < models.AccessModeOwner {
|
|
|
|
var units = make([]*models.TeamUnit, 0, len(form.Units))
|
|
|
|
for _, tp := range unitTypes {
|
|
|
|
units = append(units, &models.TeamUnit{
|
|
|
|
OrgID: ctx.Org.Organization.ID,
|
|
|
|
Type: tp,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
team.Units = units
|
|
|
|
}
|
|
|
|
|
2017-01-20 06:16:10 +01:00
|
|
|
if err := models.NewTeam(team); err != nil {
|
|
|
|
if models.IsErrTeamAlreadyExist(err) {
|
|
|
|
ctx.Error(422, "", err)
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "NewTeam", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(201, convert.ToTeam(team))
|
|
|
|
}
|
|
|
|
|
|
|
|
// EditTeam api for edit a team
|
|
|
|
func EditTeam(ctx *context.APIContext, form api.EditTeamOption) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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"
|
2018-04-29 07:22:57 +02:00
|
|
|
team := ctx.Org.Team
|
|
|
|
team.Name = form.Name
|
|
|
|
team.Description = form.Description
|
|
|
|
team.Authorize = models.ParseAccessMode(form.Permission)
|
2018-11-10 20:45:32 +01:00
|
|
|
unitTypes := models.FindUnitTypes(form.Units...)
|
|
|
|
|
|
|
|
if team.Authorize < models.AccessModeOwner {
|
|
|
|
var units = make([]*models.TeamUnit, 0, len(form.Units))
|
|
|
|
for _, tp := range unitTypes {
|
|
|
|
units = append(units, &models.TeamUnit{
|
2019-04-28 01:32:33 +02:00
|
|
|
OrgID: ctx.Org.Team.OrgID,
|
2018-11-10 20:45:32 +01:00
|
|
|
Type: tp,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
team.Units = units
|
|
|
|
}
|
|
|
|
|
2017-01-20 06:16:10 +01:00
|
|
|
if err := models.UpdateTeam(team, true); err != nil {
|
|
|
|
ctx.Error(500, "EditTeam", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(200, convert.ToTeam(team))
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteTeam api for delete a team
|
|
|
|
func DeleteTeam(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// description: team deleted
|
2017-01-20 06:16:10 +01:00
|
|
|
if err := models.DeleteTeam(ctx.Org.Team); err != nil {
|
|
|
|
ctx.Error(500, "DeleteTeam", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetTeamMembers api for get a team's members
|
|
|
|
func GetTeamMembers(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserList"
|
2017-12-21 08:43:26 +01:00
|
|
|
isMember, err := models.IsOrganizationMember(ctx.Org.Team.OrgID, ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "IsOrganizationMember", err)
|
|
|
|
return
|
|
|
|
} else if !isMember {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2017-01-20 06:16:10 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
team := ctx.Org.Team
|
|
|
|
if err := team.GetMembers(); err != nil {
|
|
|
|
ctx.Error(500, "GetTeamMembers", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
members := make([]*api.User, len(team.Members))
|
|
|
|
for i, member := range team.Members {
|
2019-07-27 15:15:30 +02:00
|
|
|
members[i] = convert.ToUser(member, ctx.IsSigned, ctx.User.IsAdmin)
|
2017-01-20 06:16:10 +01:00
|
|
|
}
|
|
|
|
ctx.JSON(200, members)
|
|
|
|
}
|
|
|
|
|
2019-01-17 01:39:50 +01:00
|
|
|
// 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"
|
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2019-07-27 15:15:30 +02:00
|
|
|
ctx.JSON(200, convert.ToUser(u, ctx.IsSigned, ctx.User.IsAdmin))
|
2019-01-17 01:39:50 +01:00
|
|
|
}
|
|
|
|
|
2017-01-20 06:16:10 +01:00
|
|
|
// AddTeamMember api for add a member to a team
|
|
|
|
func AddTeamMember(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user to add
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2017-01-20 06:16:10 +01:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := ctx.Org.Team.AddMember(u.ID); err != nil {
|
|
|
|
ctx.Error(500, "AddMember", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveTeamMember api for remove one member from a team
|
|
|
|
func RemoveTeamMember(ctx *context.APIContext) {
|
2018-06-12 16:59:22 +02:00
|
|
|
// swagger:operation DELETE /teams/{id}/members/{username} organization orgRemoveTeamMember
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
|
|
|
// summary: Remove a team member
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the team
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// - name: username
|
|
|
|
// in: path
|
|
|
|
// description: username of the user to remove
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2017-01-20 06:16:10 +01:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ctx.Org.Team.RemoveMember(u.ID); err != nil {
|
|
|
|
ctx.Error(500, "RemoveMember", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|
2017-01-26 12:54:04 +01:00
|
|
|
|
|
|
|
// GetTeamRepos api for get a team's repos
|
|
|
|
func GetTeamRepos(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/RepositoryList"
|
2017-01-26 12:54:04 +01:00
|
|
|
team := ctx.Org.Team
|
|
|
|
if err := team.GetRepositories(); err != nil {
|
|
|
|
ctx.Error(500, "GetTeamRepos", err)
|
|
|
|
}
|
|
|
|
repos := make([]*api.Repository, len(team.Repos))
|
|
|
|
for i, repo := range team.Repos {
|
2018-11-28 12:26:14 +01:00
|
|
|
access, err := models.AccessLevel(ctx.User, repo)
|
2017-01-26 12:54:04 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetTeamRepos", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
repos[i] = repo.APIFormat(access)
|
|
|
|
}
|
|
|
|
ctx.JSON(200, repos)
|
|
|
|
}
|
|
|
|
|
|
|
|
// getRepositoryByParams get repository by a team's organization ID and repo name
|
|
|
|
func getRepositoryByParams(ctx *context.APIContext) *models.Repository {
|
|
|
|
repo, err := models.GetRepositoryByName(ctx.Org.Team.OrgID, ctx.Params(":reponame"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2017-01-26 12:54:04 +01:00
|
|
|
} else {
|
|
|
|
ctx.Error(500, "GetRepositoryByName", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return repo
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddTeamRepository api for adding a repository to a team
|
|
|
|
func AddTeamRepository(ctx *context.APIContext) {
|
2018-06-12 16:59:22 +02:00
|
|
|
// swagger:operation PUT /teams/{id}/repos/{org}/{repo} organization orgAddTeamRepository
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
|
|
|
// 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 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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"
|
2017-01-26 12:54:04 +01:00
|
|
|
repo := getRepositoryByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2018-11-28 12:26:14 +01:00
|
|
|
if access, err := models.AccessLevel(ctx.User, repo); err != nil {
|
2017-01-26 12:54:04 +01:00
|
|
|
ctx.Error(500, "AccessLevel", err)
|
|
|
|
return
|
|
|
|
} else if access < models.AccessModeAdmin {
|
|
|
|
ctx.Error(403, "", "Must have admin-level access to the repository")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := ctx.Org.Team.AddRepository(repo); err != nil {
|
|
|
|
ctx.Error(500, "AddRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveTeamRepository api for removing a repository from a team
|
|
|
|
func RemoveTeamRepository(ctx *context.APIContext) {
|
2018-06-12 16:59:22 +02:00
|
|
|
// swagger:operation DELETE /teams/{id}/repos/{org}/{repo} organization orgRemoveTeamRepository
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
|
|
|
// 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 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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"
|
2017-01-26 12:54:04 +01:00
|
|
|
repo := getRepositoryByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2018-11-28 12:26:14 +01:00
|
|
|
if access, err := models.AccessLevel(ctx.User, repo); err != nil {
|
2017-01-26 12:54:04 +01:00
|
|
|
ctx.Error(500, "AccessLevel", err)
|
|
|
|
return
|
|
|
|
} else if access < models.AccessModeAdmin {
|
|
|
|
ctx.Error(403, "", "Must have admin-level access to the repository")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := ctx.Org.Team.RemoveRepository(repo.ID); err != nil {
|
|
|
|
ctx.Error(500, "RemoveRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|