2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2020-01-09 18:33:22 +01:00
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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-11-26 21:17:33 +01:00
|
|
|
|
2018-07-17 08:44:21 +02:00
|
|
|
package models
|
|
|
|
|
2020-02-08 13:48:49 +01:00
|
|
|
import (
|
|
|
|
"code.vikunja.io/api/pkg/timeutil"
|
|
|
|
"code.vikunja.io/web"
|
|
|
|
)
|
2018-12-01 00:26:56 +01:00
|
|
|
|
2018-07-17 08:44:21 +02:00
|
|
|
// TeamNamespace defines the relationship between a Team and a Namespace
|
|
|
|
type TeamNamespace struct {
|
2019-01-03 23:22:06 +01:00
|
|
|
// The unique, numeric id of this namespace <-> team relation.
|
|
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
|
|
|
// The team id.
|
2020-04-12 22:48:46 +02:00
|
|
|
TeamID int64 `xorm:"int(11) not null INDEX" json:"team_id" param:"team"`
|
2019-01-03 23:22:06 +01:00
|
|
|
// The namespace id.
|
2019-01-14 23:32:56 +01:00
|
|
|
NamespaceID int64 `xorm:"int(11) not null INDEX" json:"-" param:"namespace"`
|
2019-01-03 23:22:06 +01:00
|
|
|
// The right this team has. 0 = Read only, 1 = Read & Write, 2 = Admin. See the docs for more details.
|
2019-04-21 20:18:17 +02:00
|
|
|
Right Right `xorm:"int(11) INDEX not null default 0" json:"right" valid:"length(0|2)" maximum:"2" default:"0"`
|
2018-07-17 08:44:21 +02:00
|
|
|
|
2020-02-08 13:48:49 +01:00
|
|
|
// A timestamp when this relation was created. You cannot change this value.
|
|
|
|
Created timeutil.TimeStamp `xorm:"created not null" json:"created"`
|
|
|
|
// A timestamp when this relation was last updated. You cannot change this value.
|
|
|
|
Updated timeutil.TimeStamp `xorm:"updated not null" json:"updated"`
|
2018-07-17 08:44:21 +02:00
|
|
|
|
2018-12-01 00:26:56 +01:00
|
|
|
web.CRUDable `xorm:"-" json:"-"`
|
|
|
|
web.Rights `xorm:"-" json:"-"`
|
2018-07-17 08:44:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// TableName makes beautiful table names
|
|
|
|
func (TeamNamespace) TableName() string {
|
|
|
|
return "team_namespaces"
|
|
|
|
}
|
2019-07-16 16:15:40 +02:00
|
|
|
|
|
|
|
// Create creates a new team <-> namespace relation
|
|
|
|
// @Summary Add a team to a namespace
|
|
|
|
// @Description Gives a team access to a namespace.
|
|
|
|
// @tags sharing
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @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} code.vikunja.io/web.HTTPError "Invalid team namespace object provided."
|
|
|
|
// @Failure 404 {object} code.vikunja.io/web.HTTPError "The team does not exist."
|
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "The team does not have access to the namespace"
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /namespaces/{id}/teams [put]
|
|
|
|
func (tn *TeamNamespace) Create(a web.Auth) (err error) {
|
|
|
|
|
|
|
|
// Check if the rights are valid
|
|
|
|
if err = tn.Right.isValid(); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the team exists
|
|
|
|
_, err = GetTeamByID(tn.TeamID)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the namespace exists
|
|
|
|
_, err = GetNamespaceByID(tn.NamespaceID)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert the new team
|
|
|
|
_, err = x.Insert(tn)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete deletes a team <-> namespace relation based on the namespace & team id
|
|
|
|
// @Summary Delete a team from a namespace
|
|
|
|
// @Description Delets a team from a namespace. The team won't have access to the namespace anymore.
|
|
|
|
// @tags sharing
|
|
|
|
// @Produce json
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Param namespaceID path int true "Namespace ID"
|
|
|
|
// @Param teamID path int true "team ID"
|
|
|
|
// @Success 200 {object} models.Message "The team was successfully deleted."
|
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "The team does not have access to the namespace"
|
|
|
|
// @Failure 404 {object} code.vikunja.io/web.HTTPError "team or namespace does not exist."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /namespaces/{namespaceID}/teams/{teamID} [delete]
|
|
|
|
func (tn *TeamNamespace) Delete() (err error) {
|
|
|
|
|
|
|
|
// Check if the team exists
|
|
|
|
_, err = GetTeamByID(tn.TeamID)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the team has access to the namespace
|
|
|
|
has, err := x.Where("team_id = ? AND namespace_id = ?", tn.TeamID, tn.NamespaceID).
|
|
|
|
Get(&TeamNamespace{})
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !has {
|
|
|
|
return ErrTeamDoesNotHaveAccessToNamespace{TeamID: tn.TeamID, NamespaceID: tn.NamespaceID}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete the relation
|
|
|
|
_, err = x.Where("team_id = ?", tn.TeamID).
|
|
|
|
And("namespace_id = ?", tn.NamespaceID).
|
|
|
|
Delete(TeamNamespace{})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadAll implements the method to read all teams of a namespace
|
|
|
|
// @Summary Get teams on a namespace
|
|
|
|
// @Description Returns a namespace with all teams which have access on a given namespace.
|
|
|
|
// @tags sharing
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Param id path int true "Namespace ID"
|
2019-10-23 23:11:40 +02:00
|
|
|
// @Param page query int false "The page number. Used for pagination. If not provided, the first page of results is returned."
|
|
|
|
// @Param per_page query int false "The maximum number of items per page. Note this parameter is limited by the configured maximum of items per page."
|
2019-07-16 16:15:40 +02:00
|
|
|
// @Param s query string false "Search teams by its name."
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Success 200 {array} models.TeamWithRight "The teams with the right they have."
|
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "No right to see the namespace."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /namespaces/{id}/teams [get]
|
2019-10-23 23:11:40 +02:00
|
|
|
func (tn *TeamNamespace) ReadAll(a web.Auth, search string, page int, perPage int) (result interface{}, resultCount int, numberOfTotalItems int64, err error) {
|
2019-07-16 16:15:40 +02:00
|
|
|
// Check if the user can read the namespace
|
|
|
|
n := Namespace{ID: tn.NamespaceID}
|
|
|
|
canRead, err := n.CanRead(a)
|
|
|
|
if err != nil {
|
2019-10-23 23:11:40 +02:00
|
|
|
return nil, 0, 0, err
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
if !canRead {
|
2019-10-23 23:11:40 +02:00
|
|
|
return nil, 0, 0, ErrNeedToHaveNamespaceReadAccess{NamespaceID: tn.NamespaceID, UserID: a.GetID()}
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the teams
|
|
|
|
all := []*TeamWithRight{}
|
|
|
|
|
2020-04-12 19:29:24 +02:00
|
|
|
limit, start := getLimitFromPageIndex(page, perPage)
|
|
|
|
|
|
|
|
query := x.Table("teams").
|
2019-07-16 16:15:40 +02:00
|
|
|
Join("INNER", "team_namespaces", "team_id = teams.id").
|
|
|
|
Where("team_namespaces.namespace_id = ?", tn.NamespaceID).
|
2020-04-12 19:29:24 +02:00
|
|
|
Where("teams.name LIKE ?", "%"+search+"%")
|
|
|
|
if limit > 0 {
|
|
|
|
query = query.Limit(limit, start)
|
|
|
|
}
|
|
|
|
err = query.Find(&all)
|
2019-10-23 23:11:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, 0, 0, err
|
|
|
|
}
|
|
|
|
|
2020-01-27 18:28:17 +01:00
|
|
|
teams := []*Team{}
|
|
|
|
for _, t := range all {
|
|
|
|
teams = append(teams, &t.Team)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = addMoreInfoToTeams(teams)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-10-23 23:11:40 +02:00
|
|
|
numberOfTotalItems, err = x.Table("teams").
|
|
|
|
Join("INNER", "team_namespaces", "team_id = teams.id").
|
|
|
|
Where("team_namespaces.namespace_id = ?", tn.NamespaceID).
|
|
|
|
Where("teams.name LIKE ?", "%"+search+"%").
|
|
|
|
Count(&TeamWithRight{})
|
2019-07-16 16:15:40 +02:00
|
|
|
|
2019-10-23 23:11:40 +02:00
|
|
|
return all, len(all), numberOfTotalItems, err
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update updates a team <-> namespace relation
|
|
|
|
// @Summary Update a team <-> namespace relation
|
|
|
|
// @Description Update a team <-> namespace relation. Mostly used to update the right that team has.
|
|
|
|
// @tags sharing
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
|
|
|
// @Param namespaceID path int true "Namespace ID"
|
|
|
|
// @Param teamID path int true "Team ID"
|
|
|
|
// @Param namespace body models.TeamNamespace true "The team you want to update."
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Success 200 {object} models.TeamNamespace "The updated team <-> namespace relation."
|
|
|
|
// @Failure 403 {object} code.vikunja.io/web.HTTPError "The team does not have admin-access to the namespace"
|
|
|
|
// @Failure 404 {object} code.vikunja.io/web.HTTPError "Team or namespace does not exist."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /namespaces/{namespaceID}/teams/{teamID} [post]
|
|
|
|
func (tn *TeamNamespace) Update() (err error) {
|
|
|
|
|
|
|
|
// Check if the right is valid
|
|
|
|
if err := tn.Right.isValid(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = x.
|
2020-05-11 18:39:30 +02:00
|
|
|
Where("namespace_id = ? AND team_id = ?", tn.NamespaceID, tn.TeamID).
|
2019-07-16 16:15:40 +02:00
|
|
|
Cols("right").
|
|
|
|
Update(tn)
|
|
|
|
return
|
|
|
|
}
|