2018-07-24 17:32:08 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
// Delete deletes a team <-> list relation based on the list & team id
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Delete a team from a list
|
|
|
|
// @Description Delets a team from a list. The team won't have access to the list anymore.
|
|
|
|
// @tags sharing
|
|
|
|
// @Produce json
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @Param listID path int true "List ID"
|
|
|
|
// @Param teamID path int true "Team ID"
|
|
|
|
// @Success 200 {object} models.Message "The team was successfully deleted."
|
|
|
|
// @Failure 403 {object} models.HTTPError "The user does not have access to the list"
|
|
|
|
// @Failure 404 {object} models.HTTPError "Team or list does not exist."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /lists/{listID}/teams/{teamID} [delete]
|
2018-07-24 17:32:08 +02:00
|
|
|
func (tl *TeamList) Delete() (err error) {
|
|
|
|
|
2018-08-30 19:00:27 +02:00
|
|
|
// Check if the team exists
|
|
|
|
_, err = GetTeamByID(tl.TeamID)
|
2018-07-24 17:32:08 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-30 19:00:27 +02:00
|
|
|
// Check if the team has access to the list
|
|
|
|
has, err := x.Where("team_id = ? AND list_id = ?", tl.TeamID, tl.ListID).
|
|
|
|
Get(&TeamList{})
|
2018-07-24 17:32:08 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-08-30 19:00:27 +02:00
|
|
|
if !has {
|
|
|
|
return ErrTeamDoesNotHaveAccessToList{TeamID: tl.TeamID, ListID: tl.ListID}
|
|
|
|
}
|
2018-07-24 17:32:08 +02:00
|
|
|
|
|
|
|
// Delete the relation
|
|
|
|
_, err = x.Where("team_id = ?", tl.TeamID).
|
|
|
|
And("list_id = ?", tl.ListID).
|
|
|
|
Delete(TeamList{})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|