2015-02-23 13:07:49 -06:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2016-04-25 07:00:49 -05:00
|
|
|
"encoding/json"
|
2015-02-23 13:07:49 -06:00
|
|
|
"errors"
|
2016-04-25 07:00:49 -05:00
|
|
|
"fmt"
|
2015-02-23 13:07:49 -06:00
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Typed errors
|
|
|
|
var (
|
2015-07-21 05:18:11 -05:00
|
|
|
ErrInvalidRoleType = errors.New("Invalid role type")
|
|
|
|
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
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-04-25 07:00:49 -05:00
|
|
|
func (r *RoleType) UnmarshalJSON(data []byte) error {
|
|
|
|
var str string
|
|
|
|
err := json.Unmarshal(data, &str)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*r = RoleType(str)
|
|
|
|
|
2020-07-16 07:39:01 -05:00
|
|
|
if !r.IsValid() {
|
2016-04-25 07:00:49 -05:00
|
|
|
if (*r) != "" {
|
2018-04-16 13:25:48 -05:00
|
|
|
return fmt.Errorf("JSON validation error: 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 {
|
2018-02-09 03:42:37 -06:00
|
|
|
OrgId int64
|
|
|
|
Query string
|
|
|
|
Limit int
|
|
|
|
|
2015-02-23 13:07:49 -06:00
|
|
|
Result []*OrgUserDTO
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------
|
|
|
|
// Projections and DTOs
|
|
|
|
|
|
|
|
type OrgUserDTO struct {
|
2017-08-09 03:36:41 -05:00
|
|
|
OrgId int64 `json:"orgId"`
|
|
|
|
UserId int64 `json:"userId"`
|
|
|
|
Email string `json:"email"`
|
2019-11-21 04:44:46 -06:00
|
|
|
Name string `json:"name"`
|
2017-08-18 01:17:35 -05:00
|
|
|
AvatarUrl string `json:"avatarUrl"`
|
2017-08-09 03:36:41 -05:00
|
|
|
Login string `json:"login"`
|
|
|
|
Role string `json:"role"`
|
|
|
|
LastSeenAt time.Time `json:"lastSeenAt"`
|
|
|
|
LastSeenAtAge string `json:"lastSeenAtAge"`
|
2015-02-23 13:07:49 -06:00
|
|
|
}
|