mirror of https://github.com/gogits/gogs.git
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.
61 lines
1.3 KiB
61 lines
1.3 KiB
9 years ago
|
// 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 (
|
||
|
api "github.com/gogits/go-gogs-client"
|
||
|
|
||
|
"github.com/gogits/gogs/models"
|
||
8 years ago
|
"github.com/gogits/gogs/pkg/context"
|
||
8 years ago
|
"github.com/gogits/gogs/routes/api/v1/convert"
|
||
|
"github.com/gogits/gogs/routes/api/v1/user"
|
||
9 years ago
|
)
|
||
|
|
||
8 years ago
|
func CreateTeam(c *context.APIContext, form api.CreateTeamOption) {
|
||
9 years ago
|
team := &models.Team{
|
||
8 years ago
|
OrgID: c.Org.Organization.ID,
|
||
9 years ago
|
Name: form.Name,
|
||
|
Description: form.Description,
|
||
|
Authorize: models.ParseAccessMode(form.Permission),
|
||
|
}
|
||
|
if err := models.NewTeam(team); err != nil {
|
||
|
if models.IsErrTeamAlreadyExist(err) {
|
||
8 years ago
|
c.Error(422, "", err)
|
||
9 years ago
|
} else {
|
||
8 years ago
|
c.Error(500, "NewTeam", err)
|
||
9 years ago
|
}
|
||
|
return
|
||
|
}
|
||
|
|
||
8 years ago
|
c.JSON(201, convert.ToTeam(team))
|
||
9 years ago
|
}
|
||
9 years ago
|
|
||
8 years ago
|
func AddTeamMember(c *context.APIContext) {
|
||
|
u := user.GetUserByParams(c)
|
||
|
if c.Written() {
|
||
9 years ago
|
return
|
||
|
}
|
||
8 years ago
|
if err := c.Org.Team.AddMember(u.ID); err != nil {
|
||
|
c.Error(500, "AddMember", err)
|
||
9 years ago
|
return
|
||
|
}
|
||
|
|
||
8 years ago
|
c.Status(204)
|
||
9 years ago
|
}
|
||
|
|
||
8 years ago
|
func RemoveTeamMember(c *context.APIContext) {
|
||
|
u := user.GetUserByParams(c)
|
||
|
if c.Written() {
|
||
9 years ago
|
return
|
||
|
}
|
||
|
|
||
8 years ago
|
if err := c.Org.Team.RemoveMember(u.ID); err != nil {
|
||
|
c.Error(500, "RemoveMember", err)
|
||
9 years ago
|
return
|
||
|
}
|
||
|
|
||
8 years ago
|
c.Status(204)
|
||
9 years ago
|
}
|