42 lines
1.5 KiB
Go
42 lines
1.5 KiB
Go
/* Copyright © INFINI Ltd. All rights reserved.
|
|
* web: https://infinilabs.com
|
|
* mail: hello#infini.ltd */
|
|
|
|
package security
|
|
|
|
import (
|
|
"infini.sh/framework/core/orm"
|
|
)
|
|
|
|
type User struct {
|
|
orm.ORMObjectBase
|
|
|
|
AuthProvider string `json:"auth_provider" elastic_mapping:"auth_provider: { type: keyword }"`
|
|
Username string `json:"name" elastic_mapping:"name: { type: keyword }"`
|
|
Nickname string `json:"nick_name" elastic_mapping:"nick_name: { type: keyword }"`
|
|
Password string `json:"password" elastic_mapping:"password: { type: keyword }"`
|
|
Email string `json:"email" elastic_mapping:"email: { type: keyword }"`
|
|
Phone string `json:"phone" elastic_mapping:"phone: { type: keyword }"`
|
|
Tags []string `json:"tags" elastic_mapping:"mobile: { type: keyword }"`
|
|
|
|
AvatarUrl string `json:"avatar_url" elastic_mapping:"avatar_url: { type: keyword }"`
|
|
Roles []UserRole `json:"roles" elastic_mapping:"roles: { type: object }"`
|
|
Payload interface{} `json:"-"` //used for storing additional data derived from auth provider
|
|
}
|
|
|
|
func (user *User) GetPermissions() (roles []string, privileges []string) {
|
|
for _, v := range user.Roles {
|
|
role, ok := RoleMap[v.Name]
|
|
if ok {
|
|
roles = append(roles, v.Name)
|
|
privileges = append(privileges, role.Privilege.Platform...)
|
|
}
|
|
}
|
|
return roles, privileges
|
|
}
|
|
|
|
type UserRole struct {
|
|
ID string `json:"id" elastic_mapping:"id: { type: keyword }"`
|
|
Name string `json:"name" elastic_mapping:"name: { type: keyword }"`
|
|
}
|