Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
52 lines
1.3 KiB
// Copyright 2016 The Gogs Authors. All rights reserved. |
|
// Use of this source code is governed by a MIT-style |
|
// license that can be found in the LICENSE file. |
|
|
|
package admin |
|
|
|
import ( |
|
"code.gitea.io/gitea/models" |
|
"code.gitea.io/gitea/modules/context" |
|
) |
|
|
|
// GetRepositoryByParams api for getting repository by orgnizition 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) { |
|
ctx.Status(404) |
|
} else { |
|
ctx.Error(500, "GetRepositoryByName", err) |
|
} |
|
return nil |
|
} |
|
return repo |
|
} |
|
|
|
// AddTeamRepository api for adding a repository to a team |
|
func AddTeamRepository(ctx *context.APIContext) { |
|
repo := GetRepositoryByParams(ctx) |
|
if ctx.Written() { |
|
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) { |
|
repo := GetRepositoryByParams(ctx) |
|
if ctx.Written() { |
|
return |
|
} |
|
if err := ctx.Org.Team.RemoveRepository(repo.ID); err != nil { |
|
ctx.Error(500, "RemoveRepository", err) |
|
return |
|
} |
|
|
|
ctx.Status(204) |
|
}
|
|
|