grafana/pkg/models/team_member.go

78 lines
1.8 KiB
Go
Raw Normal View History

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-12-08 09:25:45 -06:00
// TeamMember model
type TeamMember struct {
Id int64
OrgId int64
TeamId int64
UserId int64
External bool // Signals that the membership has been created by an external systems, such as LDAP
Permission PermissionType
Created time.Time
Updated time.Time
}
// ---------------------
// COMMANDS
2017-12-08 09:25:45 -06:00
type AddTeamMemberCommand struct {
UserId int64 `json:"userId" binding:"Required"`
OrgId int64 `json:"-"`
TeamId int64 `json:"-"`
External bool `json:"-"`
Permission PermissionType `json:"-"`
}
type UpdateTeamMemberCommand struct {
UserId int64 `json:"-"`
OrgId int64 `json:"-"`
TeamId int64 `json:"-"`
Permission PermissionType `json:"permission"`
ProtectLastAdmin bool `json:"-"`
}
2017-12-08 09:25:45 -06:00
type RemoveTeamMemberCommand struct {
OrgId int64 `json:"-"`
UserId int64
TeamId int64
ProtectLastAdmin bool `json:"-"`
}
// ----------------------
// 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
}
// ----------------------
// Projections and DTOs
2017-12-08 09:25:45 -06:00
type TeamMemberDTO struct {
2019-03-13 10:32:59 -05:00
OrgId int64 `json:"orgId"`
TeamId int64 `json:"teamId"`
UserId int64 `json:"userId"`
External bool `json:"-"`
AuthModule string `json:"auth_module"`
2019-03-13 10:32:59 -05:00
Email string `json:"email"`
Login string `json:"login"`
AvatarUrl string `json:"avatarUrl"`
Labels []string `json:"labels"`
Permission PermissionType `json:"permission"`
}