2018-07-17 08:44:21 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
// Create creates a new team <-> namespace relation
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Add a team to a namespace
|
|
|
|
// @Description Gives a team access to a namespace.
|
|
|
|
// @tags sharing
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @Param id path int true "Namespace ID"
|
|
|
|
// @Param namespace body models.TeamNamespace true "The team you want to add to the namespace."
|
|
|
|
// @Success 200 {object} models.TeamNamespace "The created team<->namespace relation."
|
|
|
|
// @Failure 400 {object} models.HTTPError "Invalid team namespace object provided."
|
|
|
|
// @Failure 404 {object} models.HTTPError "The team does not exist."
|
|
|
|
// @Failure 403 {object} models.HTTPError "The team does not have access to the namespace"
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /namespaces/{id}/teams [put]
|
2018-07-18 08:56:19 +02:00
|
|
|
func (tn *TeamNamespace) Create(doer *User) (err error) {
|
2018-07-17 08:44:21 +02:00
|
|
|
|
|
|
|
// Check if the rights are valid
|
2018-07-24 17:29:13 +02:00
|
|
|
if err = tn.Right.isValid(); err != nil {
|
|
|
|
return
|
2018-07-17 08:44:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the team exists
|
|
|
|
_, err = GetTeamByID(tn.TeamID)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the namespace exists
|
2018-07-18 08:56:19 +02:00
|
|
|
_, err = GetNamespaceByID(tn.NamespaceID)
|
2018-07-17 08:44:21 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-07-24 17:47:08 +02:00
|
|
|
|
2018-07-24 17:46:32 +02:00
|
|
|
// Check if the team already has access to the namespace
|
|
|
|
exists, err := x.Where("team_id = ?", tn.TeamID).
|
|
|
|
And("namespace_id = ?", tn.NamespaceID).
|
|
|
|
Get(&TeamNamespace{})
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if exists {
|
|
|
|
return ErrTeamAlreadyHasAccess{tn.TeamID, tn.NamespaceID}
|
|
|
|
}
|
2018-07-17 08:44:21 +02:00
|
|
|
|
|
|
|
// Insert the new team
|
|
|
|
_, err = x.Insert(tn)
|
|
|
|
return
|
|
|
|
}
|