Files
grafana/pkg/models/team_member.go
T

80 lines
1.8 KiB
Go
Raw Normal View History

2017-04-09 00:55:07 +02:00
package models
import (
"errors"
"time"
"github.com/grafana/grafana/pkg/services/user"
2017-04-09 00:55:07 +02:00
)
// Typed errors
var (
2022-06-28 14:32:25 +02:00
ErrTeamMemberAlreadyAdded = errors.New("user is already added to this team")
2017-04-09 00:55:07 +02:00
)
2017-12-08 18:25:45 +03: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
2017-04-09 00:55:07 +02:00
Created time.Time
Updated time.Time
}
// ---------------------
// COMMANDS
2017-12-08 18:25:45 +03:00
type AddTeamMemberCommand struct {
UserId int64 `json:"userId" binding:"Required"`
OrgId int64 `json:"-"`
TeamId int64 `json:"-"`
External bool `json:"-"`
Permission PermissionType `json:"-"`
2017-04-09 00:55:07 +02:00
}
2019-03-06 15:37:37 +01:00
type UpdateTeamMemberCommand struct {
UserId int64 `json:"-"`
OrgId int64 `json:"-"`
TeamId int64 `json:"-"`
Permission PermissionType `json:"permission"`
2019-03-06 15:37:37 +01:00
}
2017-12-08 18:25:45 +03:00
type RemoveTeamMemberCommand struct {
OrgId int64 `json:"-"`
UserId int64
TeamId int64
2017-04-09 00:55:07 +02:00
}
// ----------------------
// QUERIES
2017-12-08 18:25:45 +03:00
type GetTeamMembersQuery struct {
OrgId int64
TeamId int64
UserId int64
External bool
SignedInUser *user.SignedInUser
Result []*TeamMemberDTO
2017-04-09 00:55:07 +02:00
}
// ----------------------
// Projections and DTOs
2017-12-08 18:25:45 +03:00
type TeamMemberDTO struct {
2019-03-13 16:32:59 +01:00
OrgId int64 `json:"orgId"`
TeamId int64 `json:"teamId"`
UserId int64 `json:"userId"`
External bool `json:"-"`
AuthModule string `json:"auth_module"`
2019-03-13 16:32:59 +01:00
Email string `json:"email"`
Name string `json:"name"`
2019-03-13 16:32:59 +01:00
Login string `json:"login"`
AvatarUrl string `json:"avatarUrl"`
Labels []string `json:"labels"`
Permission PermissionType `json:"permission"`
2017-04-09 00:55:07 +02:00
}