134 lines
3.7 KiB
Go
134 lines
3.7 KiB
Go
package models
|
|
|
|
// Team holds a team object
|
|
type Team struct {
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
|
Name string `xorm:"varchar(250) not null" json:"name"`
|
|
Description string `xorm:"varchar(250)" json:"description"`
|
|
CreatedByID int64 `xorm:"int(11) not null" json:"-"`
|
|
|
|
CreatedBy User `xorm:"-" json:"created_by"`
|
|
Members []*TeamUser `xorm:"-" json:"members"`
|
|
|
|
Created int64 `xorm:"created" json:"created"`
|
|
Updated int64 `xorm:"updated" json:"updated"`
|
|
|
|
CRUDable `xorm:"-" json:"-"`
|
|
Rights `xorm:"-" json:"-"`
|
|
}
|
|
|
|
// TableName makes beautiful table names
|
|
func (Team) TableName() string {
|
|
return "teams"
|
|
}
|
|
|
|
// AfterLoad gets the created by user object
|
|
func (t *Team) AfterLoad() {
|
|
// Get the owner
|
|
t.CreatedBy, _, _ = GetUserByID(t.CreatedByID)
|
|
|
|
// Get all members
|
|
x.Select("*").
|
|
Table("users").
|
|
Join("INNER", "team_members", "team_members.user_id = users.id").
|
|
Where("team_id = ?", t.ID).
|
|
Find(&t.Members)
|
|
}
|
|
|
|
// TeamMember defines the relationship between a user and a team
|
|
type TeamMember struct {
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
|
TeamID int64 `xorm:"int(11) not null" json:"team_id"`
|
|
UserID int64 `xorm:"int(11) not null" json:"user_id"`
|
|
IsAdmin bool `xorm:"tinyint(1)" json:"is_admin"`
|
|
|
|
Created int64 `xorm:"created" json:"created"`
|
|
Updated int64 `xorm:"updated" json:"updated"`
|
|
|
|
CRUDable `xorm:"-" json:"-"`
|
|
Rights `xorm:"-" json:"-"`
|
|
}
|
|
|
|
// TableName makes beautiful table names
|
|
func (TeamMember) TableName() string {
|
|
return "team_members"
|
|
}
|
|
|
|
// TeamUser is the team member type
|
|
type TeamUser struct {
|
|
User `xorm:"extends"`
|
|
IsAdmin bool `json:"is_admin"`
|
|
}
|
|
|
|
// TeamNamespace defines the relationship between a Team and a Namespace
|
|
type TeamNamespace struct {
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
|
TeamID int64 `xorm:"int(11) not null" json:"team_id"`
|
|
NamespaceID int64 `xorm:"int(11) not null" json:"namespace_id"`
|
|
Rights []int64 `xorm:"varchar(250)" json:"rights"`
|
|
|
|
Created int64 `xorm:"created" json:"created"`
|
|
Updated int64 `xorm:"updated" json:"updated"`
|
|
}
|
|
|
|
// TableName makes beautiful table names
|
|
func (TeamNamespace) TableName() string {
|
|
return "team_namespaces"
|
|
}
|
|
|
|
// TeamList defines the relation between a team and a list
|
|
type TeamList struct {
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
|
TeamID int64 `xorm:"int(11) not null" json:"team_id"`
|
|
ListID int64 `xorm:"int(11) not null" json:"list_id"`
|
|
Rights []int64 `xorm:"varchar(250)" json:"rights"`
|
|
|
|
Created int64 `xorm:"created" json:"created"`
|
|
Updated int64 `xorm:"updated" json:"updated"`
|
|
}
|
|
|
|
// TableName makes beautiful table names
|
|
func (TeamList) TableName() string {
|
|
return "team_list"
|
|
}
|
|
|
|
// GetAllTeamsByNamespaceID returns all teams for a namespace
|
|
func GetAllTeamsByNamespaceID(id int64) (teams []*Team, err error) {
|
|
err = x.Table("teams").
|
|
Join("INNER", "team_namespaces", "teams.id = team_id").
|
|
Where("teams.namespace_id = ?", id).
|
|
Find(teams)
|
|
|
|
return
|
|
}
|
|
|
|
// GetTeamByID gets a team by its ID
|
|
func GetTeamByID(id int64) (team Team, err error) {
|
|
exists, err := x.Where("id = ?", id).Get(&team)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if !exists {
|
|
return team, ErrTeamDoesNotExist{id}
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
// ReadOne implements the CRUD method to get one team
|
|
func (t *Team) ReadOne(id int64) (err error) {
|
|
*t, err = GetTeamByID(id)
|
|
return
|
|
}
|
|
|
|
// ReadAll gets all teams the user is part of
|
|
func (t *Team) ReadAll(user *User) (teams interface{}, err error) {
|
|
all := []*Team{}
|
|
err = x.Select("teams.*").
|
|
Table("teams").
|
|
Join("INNER", "team_members", "team_members.team_id = teams.id").
|
|
Where("team_members.user_id = ?", user.ID).
|
|
Find(&all)
|
|
|
|
return all, err
|
|
}
|