2015-02-23 13:07:49 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2016-04-25 07:00:49 -05:00
|
|
|
"fmt"
|
2022-05-04 02:35:10 -05:00
|
|
|
"strings"
|
2015-02-23 13:07:49 -06:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Typed errors
|
|
|
|
var (
|
2020-11-05 06:07:06 -06:00
|
|
|
ErrLastOrgAdmin = errors.New("cannot remove last organization admin")
|
|
|
|
ErrOrgUserNotFound = errors.New("cannot find the organization user")
|
|
|
|
ErrOrgUserAlreadyAdded = errors.New("user is already added to organization")
|
2015-02-23 13:07:49 -06:00
|
|
|
)
|
|
|
|
|
2022-04-20 02:27:25 -05:00
|
|
|
// swagger:enum RoleType
|
2015-02-23 13:07:49 -06:00
|
|
|
type RoleType string
|
|
|
|
|
|
|
|
const (
|
2017-12-13 11:53:42 -06:00
|
|
|
ROLE_VIEWER RoleType = "Viewer"
|
|
|
|
ROLE_EDITOR RoleType = "Editor"
|
|
|
|
ROLE_ADMIN RoleType = "Admin"
|
2015-02-23 13:07:49 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func (r RoleType) IsValid() bool {
|
2017-12-13 11:53:42 -06:00
|
|
|
return r == ROLE_VIEWER || r == ROLE_ADMIN || r == ROLE_EDITOR
|
2015-02-23 13:07:49 -06:00
|
|
|
}
|
|
|
|
|
2015-12-21 16:09:27 -06:00
|
|
|
func (r RoleType) Includes(other RoleType) bool {
|
|
|
|
if r == ROLE_ADMIN {
|
|
|
|
return true
|
|
|
|
}
|
2017-06-17 17:24:38 -05:00
|
|
|
|
2017-12-13 11:53:42 -06:00
|
|
|
if r == ROLE_EDITOR {
|
2015-12-21 16:09:27 -06:00
|
|
|
return other != ROLE_ADMIN
|
|
|
|
}
|
2019-03-20 04:58:20 -05:00
|
|
|
|
2019-09-19 01:19:11 -05:00
|
|
|
return r == other
|
2015-12-21 16:09:27 -06:00
|
|
|
}
|
|
|
|
|
2021-03-22 07:22:48 -05:00
|
|
|
func (r RoleType) Children() []RoleType {
|
|
|
|
switch r {
|
|
|
|
case ROLE_ADMIN:
|
|
|
|
return []RoleType{ROLE_EDITOR, ROLE_VIEWER}
|
|
|
|
case ROLE_EDITOR:
|
|
|
|
return []RoleType{ROLE_VIEWER}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-06 02:31:14 -05:00
|
|
|
func (r RoleType) Parents() []RoleType {
|
|
|
|
switch r {
|
|
|
|
case ROLE_EDITOR:
|
|
|
|
return []RoleType{ROLE_ADMIN}
|
|
|
|
case ROLE_VIEWER:
|
|
|
|
return []RoleType{ROLE_EDITOR, ROLE_ADMIN}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-04 02:35:10 -05:00
|
|
|
func (r *RoleType) UnmarshalText(data []byte) error {
|
|
|
|
// make sure "viewer" and "Viewer" are both correct
|
|
|
|
str := strings.Title(string(data))
|
2016-04-25 07:00:49 -05:00
|
|
|
|
|
|
|
*r = RoleType(str)
|
2020-07-16 07:39:01 -05:00
|
|
|
if !r.IsValid() {
|
2016-04-25 07:00:49 -05:00
|
|
|
if (*r) != "" {
|
2022-05-04 02:35:10 -05:00
|
|
|
return fmt.Errorf("invalid role value: %s", *r)
|
2016-04-25 07:00:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
*r = ROLE_VIEWER
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-02-23 13:07:49 -06:00
|
|
|
type OrgUser struct {
|
2015-05-01 02:48:07 -05:00
|
|
|
Id int64
|
2015-02-23 13:07:49 -06:00
|
|
|
OrgId int64
|
|
|
|
UserId int64
|
|
|
|
Role RoleType
|
|
|
|
Created time.Time
|
|
|
|
Updated time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------
|
|
|
|
// COMMANDS
|
|
|
|
|
|
|
|
type RemoveOrgUserCommand struct {
|
2018-10-11 00:48:35 -05:00
|
|
|
UserId int64
|
|
|
|
OrgId int64
|
|
|
|
ShouldDeleteOrphanedUser bool
|
2018-10-11 14:20:53 -05:00
|
|
|
UserWasDeleted bool
|
2015-02-23 13:07:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
type AddOrgUserCommand struct {
|
|
|
|
LoginOrEmail string `json:"loginOrEmail" binding:"Required"`
|
|
|
|
Role RoleType `json:"role" binding:"Required"`
|
|
|
|
|
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
UserId int64 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2015-05-01 02:48:07 -05:00
|
|
|
type UpdateOrgUserCommand struct {
|
|
|
|
Role RoleType `json:"role" binding:"Required"`
|
|
|
|
|
|
|
|
OrgId int64 `json:"-"`
|
|
|
|
UserId int64 `json:"-"`
|
|
|
|
}
|
|
|
|
|
2015-02-23 13:07:49 -06:00
|
|
|
// ----------------------
|
|
|
|
// QUERIES
|
|
|
|
|
|
|
|
type GetOrgUsersQuery struct {
|
2022-03-14 12:24:07 -05:00
|
|
|
UserID int64
|
|
|
|
OrgId int64
|
|
|
|
Query string
|
|
|
|
Limit int
|
2018-02-09 03:42:37 -06:00
|
|
|
|
2022-01-13 07:40:32 -06:00
|
|
|
User *SignedInUser
|
2015-02-23 13:07:49 -06:00
|
|
|
Result []*OrgUserDTO
|
|
|
|
}
|
|
|
|
|
2021-05-12 07:10:35 -05:00
|
|
|
type SearchOrgUsersQuery struct {
|
2022-03-14 12:24:07 -05:00
|
|
|
OrgID int64
|
|
|
|
Query string
|
|
|
|
Page int
|
|
|
|
Limit int
|
2021-05-12 07:10:35 -05:00
|
|
|
|
2022-01-13 07:40:32 -06:00
|
|
|
User *SignedInUser
|
2021-05-12 07:10:35 -05:00
|
|
|
Result SearchOrgUsersQueryResult
|
|
|
|
}
|
|
|
|
|
|
|
|
type SearchOrgUsersQueryResult struct {
|
|
|
|
TotalCount int64 `json:"totalCount"`
|
|
|
|
OrgUsers []*OrgUserDTO `json:"OrgUsers"`
|
|
|
|
Page int `json:"page"`
|
|
|
|
PerPage int `json:"perPage"`
|
|
|
|
}
|
|
|
|
|
2015-02-23 13:07:49 -06:00
|
|
|
// ----------------------
|
|
|
|
// Projections and DTOs
|
|
|
|
|
|
|
|
type OrgUserDTO struct {
|
2021-12-22 11:46:33 -06:00
|
|
|
OrgId int64 `json:"orgId"`
|
|
|
|
UserId int64 `json:"userId"`
|
|
|
|
Email string `json:"email"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
AvatarUrl string `json:"avatarUrl"`
|
|
|
|
Login string `json:"login"`
|
|
|
|
Role string `json:"role"`
|
|
|
|
LastSeenAt time.Time `json:"lastSeenAt"`
|
2022-02-22 07:58:42 -06:00
|
|
|
Updated time.Time `json:"-"`
|
|
|
|
Created time.Time `json:"-"`
|
2021-12-22 11:46:33 -06:00
|
|
|
LastSeenAtAge string `json:"lastSeenAtAge"`
|
|
|
|
AccessControl map[string]bool `json:"accessControl,omitempty"`
|
2015-02-23 13:07:49 -06:00
|
|
|
}
|