2018-11-26 21:17:33 +01:00
|
|
|
// Vikunja is a todo-list application to facilitate your life.
|
|
|
|
// Copyright 2018 Vikunja and contributors. All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
2018-07-16 08:18:15 +02:00
|
|
|
package models
|
|
|
|
|
2018-12-12 23:50:35 +01:00
|
|
|
import (
|
|
|
|
"code.vikunja.io/api/pkg/metrics"
|
|
|
|
_ "code.vikunja.io/web" // For swaggerdocs generation
|
|
|
|
)
|
2018-12-01 02:59:17 +01:00
|
|
|
|
2018-07-16 08:45:38 +02:00
|
|
|
// Delete deletes a team
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Deletes a team
|
|
|
|
// @Description Delets a team. This will also remove the access for all users in that team.
|
|
|
|
// @tags team
|
|
|
|
// @Produce json
|
|
|
|
// @Security ApiKeyAuth
|
|
|
|
// @Param id path int true "Team ID"
|
|
|
|
// @Success 200 {object} models.Message "The team was successfully deleted."
|
2018-12-01 02:59:17 +01:00
|
|
|
// @Failure 400 {object} code.vikunja.io/web.HTTPError "Invalid team object provided."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /teams/{id} [delete]
|
2018-07-18 08:15:38 +02:00
|
|
|
func (t *Team) Delete() (err error) {
|
2018-07-16 08:18:15 +02:00
|
|
|
|
|
|
|
// Check if the team exists
|
2018-07-18 08:15:38 +02:00
|
|
|
_, err = GetTeamByID(t.ID)
|
2018-07-16 08:18:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the team
|
2018-07-18 08:15:38 +02:00
|
|
|
_, err = x.ID(t.ID).Delete(&Team{})
|
2018-07-16 08:18:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete team members
|
2018-07-18 08:15:38 +02:00
|
|
|
_, err = x.Where("team_id = ?", t.ID).Delete(&TeamMember{})
|
2018-07-16 08:18:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete team <-> namespace relations
|
2018-07-18 08:15:38 +02:00
|
|
|
_, err = x.Where("team_id = ?", t.ID).Delete(&TeamNamespace{})
|
2018-07-16 08:18:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete team <-> lists relations
|
2018-07-18 08:15:38 +02:00
|
|
|
_, err = x.Where("team_id = ?", t.ID).Delete(&TeamList{})
|
2018-12-12 23:50:35 +01:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
metrics.UpdateCount(-1, metrics.TeamCountKey)
|
2018-07-16 08:18:15 +02:00
|
|
|
return
|
|
|
|
}
|