2017-04-08 17:55:07 -05:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Typed errors
|
|
|
|
var (
|
2017-12-08 09:25:45 -06:00
|
|
|
ErrTeamMemberAlreadyAdded = errors.New("User is already added to this team")
|
2017-04-08 17:55:07 -05:00
|
|
|
)
|
|
|
|
|
2017-12-08 09:25:45 -06:00
|
|
|
// TeamMember model
|
|
|
|
type TeamMember struct {
|
2019-03-06 04:47:18 -06:00
|
|
|
Id int64
|
|
|
|
OrgId int64
|
|
|
|
TeamId int64
|
|
|
|
UserId int64
|
|
|
|
External bool
|
|
|
|
Permission int64
|
2017-04-08 17:55:07 -05:00
|
|
|
|
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------
|
|
|
|
// COMMANDS
|
|
|
|
|
2017-12-08 09:25:45 -06:00
|
|
|
type AddTeamMemberCommand struct {
|
2019-03-06 04:47:18 -06:00
|
|
|
UserId int64 `json:"userId" binding:"Required"`
|
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
TeamId int64 `json:"-"`
|
|
|
|
External bool `json:"-"`
|
|
|
|
Permission int64 `json:"-"`
|
2017-04-08 17:55:07 -05:00
|
|
|
}
|
|
|
|
|
2019-03-06 08:37:37 -06:00
|
|
|
type UpdateTeamMemberCommand struct {
|
|
|
|
UserId int64 `json:"-"`
|
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
TeamId int64 `json:"-"`
|
|
|
|
Permission int64 `json:"permission"`
|
|
|
|
}
|
|
|
|
|
2017-12-08 09:25:45 -06:00
|
|
|
type RemoveTeamMemberCommand struct {
|
2019-03-12 10:59:39 -05:00
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
UserId int64
|
|
|
|
TeamId int64
|
|
|
|
ProtectLastAdmin bool `json:"-"`
|
2017-04-08 17:55:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------
|
|
|
|
// QUERIES
|
|
|
|
|
2017-12-08 09:25:45 -06:00
|
|
|
type GetTeamMembersQuery struct {
|
2018-09-14 10:27:36 -05:00
|
|
|
OrgId int64
|
|
|
|
TeamId int64
|
|
|
|
UserId int64
|
|
|
|
External bool
|
|
|
|
Result []*TeamMemberDTO
|
2017-04-08 17:55:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------
|
|
|
|
// Projections and DTOs
|
|
|
|
|
2017-12-08 09:25:45 -06:00
|
|
|
type TeamMemberDTO struct {
|
2019-03-06 05:27:18 -06:00
|
|
|
OrgId int64 `json:"orgId"`
|
|
|
|
TeamId int64 `json:"teamId"`
|
|
|
|
UserId int64 `json:"userId"`
|
|
|
|
External bool `json:"-"`
|
|
|
|
Email string `json:"email"`
|
|
|
|
Login string `json:"login"`
|
|
|
|
AvatarUrl string `json:"avatarUrl"`
|
|
|
|
Labels []string `json:"labels"`
|
|
|
|
Permission int64 `json:"permission"`
|
2017-04-08 17:55:07 -05:00
|
|
|
}
|