| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- package models
- import (
- "errors"
- "time"
- )
- // Typed errors
- var (
- ErrUserNotFound = errors.New("User not found")
- )
- type User struct {
- Id int64
- Version int
- Email string
- Name string
- Login string
- Password string
- Salt string
- Rands string
- Company string
- EmailVerified bool
- Theme string
- IsAdmin bool
- OrgId int64
- Created time.Time
- Updated time.Time
- }
- func (u *User) NameOrFallback() string {
- if u.Name != "" {
- return u.Name
- } else if u.Login != "" {
- return u.Login
- } else {
- return u.Email
- }
- }
- // ---------------------
- // COMMANDS
- type CreateUserCommand struct {
- Email string
- Login string
- Name string
- Company string
- OrgName string
- Password string
- EmailVerified bool
- IsAdmin bool
- Result User
- }
- type UpdateUserCommand struct {
- Name string `json:"name"`
- Email string `json:"email"`
- Login string `json:"login"`
- Theme string `json:"theme"`
- UserId int64 `json:"-"`
- }
- type ChangeUserPasswordCommand struct {
- OldPassword string `json:"oldPassword"`
- NewPassword string `json:"newPassword"`
- UserId int64 `json:"-"`
- }
- type UpdateUserPermissionsCommand struct {
- IsGrafanaAdmin bool
- UserId int64 `json:"-"`
- }
- type DeleteUserCommand struct {
- UserId int64
- }
- type SetUsingOrgCommand struct {
- UserId int64
- OrgId int64
- }
- // ----------------------
- // QUERIES
- type GetUserByLoginQuery struct {
- LoginOrEmail string
- Result *User
- }
- type GetUserByIdQuery struct {
- Id int64
- Result *User
- }
- type GetSignedInUserQuery struct {
- UserId int64
- Login string
- Email string
- Result *SignedInUser
- }
- type GetUserProfileQuery struct {
- UserId int64
- Result UserProfileDTO
- }
- type SearchUsersQuery struct {
- Query string
- Page int
- Limit int
- Result []*UserSearchHitDTO
- }
- type GetUserOrgListQuery struct {
- UserId int64
- Result []*UserOrgDTO
- }
- // ------------------------
- // DTO & Projections
- type SignedInUser struct {
- UserId int64
- OrgId int64
- OrgName string
- OrgRole RoleType
- Login string
- Name string
- Email string
- Theme string
- ApiKeyId int64
- IsGrafanaAdmin bool
- }
- type UserProfileDTO struct {
- Email string `json:"email"`
- Name string `json:"name"`
- Login string `json:"login"`
- Theme string `json:"theme"`
- OrgId int64 `json:"orgId"`
- IsGrafanaAdmin bool `json:"isGrafanaAdmin"`
- }
- type UserSearchHitDTO struct {
- Id int64 `json:"id"`
- Name string `json:"name"`
- Login string `json:"login"`
- Email string `json:"email"`
- IsAdmin bool `json:"isAdmin"`
- }
|