authentication/struct.go

176 lines
4.7 KiB
Go

package authentication
import (
"github.com/Selly-Modules/natsio"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"time"
)
// CommonQuery ...
type CommonQuery struct {
Page int64 `json:"page"`
Limit int64 `json:"limit"`
Keyword string `json:"keyword"`
Sort bson.D `json:"sort"`
StaffID string `json:"staffID"`
}
// GetInfoStaff ...
type GetInfoStaff struct {
Condition interface{} `json:"condition"`
}
// Log ...
type Log struct {
Reference string `json:"reference"`
Payload PayloadCheckPermission `json:"payload"`
Source string `json:"source"`
Permission []string `json:"permission"`
Action string `json:"action"`
}
// LogsResponse ...
type LogsResponse struct {
ID string `json:"_id"`
Staff string `json:"staff"`
Payload PayloadCheckPermission `json:"payload"`
Action string `json:"action"`
CreatedAt string `json:"createdAt"`
}
// ListPageResponse ...
type ListPageResponse struct {
Data []interface{} `json:"data"`
Total int64 `json:"total"`
Page int64 `json:"page"`
Limit int64 `json:"limit"`
}
// Staff ...
type Staff struct {
Reference string `json:"reference"` // ObjectID
Name string `json:"name"`
Email string `json:"email"`
Phone string `json:"phone"`
Active bool `json:"active"`
IsRoot bool `json:"isRoot"`
Permissions []string `json:"permissions"`
Source []string `json:"source"`
}
// ListStaff ...
type ListStaff struct {
Staffs []Staff `json:"staffs"`
}
// Config int client elasticsearch
type Config struct {
ApiKey string
Nats natsio.Config
}
// Agent ...
type Agent struct {
Source string `json:"source"`
IP string `json:"ip"`
Platform string `json:"platform"`
Version string `json:"version"`
}
// StaffCheckPermissionBody ...
type StaffCheckPermissionBody struct {
StaffID string `json:"staffId"`
Token string `json:"token"`
Permission []string `json:"permission"`
Source string `json:"source"`
Code string `json:"code,omitempty"`
IsRoot string `json:"isRoot"`
Agent Agent `json:"agent"`
DeviceId string `json:"deviceId"`
Payload PayloadCheckPermission `json:"payload"`
}
// PayloadCheckPermission ...
type PayloadCheckPermission struct {
URL string `json:"url"`
Body string `json:"body"`
Method string `json:"method"`
}
// StaffCheckPermissionResponse ...
type StaffCheckPermissionResponse struct {
Message string `json:"message"`
IsValid bool `json:"isValid"`
Code int `json:"code"`
}
// StaffGetPermissions ...
type StaffGetPermissions struct {
StaffID string `json:"staffId"`
Source string `json:"source"`
Prefix string `json:"prefix"`
}
// StaffGetPermissionsResponse ...
type StaffGetPermissionsResponse struct {
Permissions []string `json:"permissions"`
}
// RequestBody ...
type RequestBody struct {
Body []byte `json:"body"`
ApiKey string `json:"apiKey"`
}
// Response
// response to service es
type Response struct {
Success bool `json:"success"`
Data []byte `json:"data,omitempty"`
Message string `json:"message"`
}
// StaffInfo ...
type StaffInfo struct {
ID primitive.ObjectID `json:"_id"`
Name string `json:"name"`
SearchString string `json:"searchString"`
Email string `json:"email"`
Phone string `json:"phone"`
Active bool `json:"active"`
Role primitive.ObjectID `json:"role,omitempty"`
Avatar *FilePhoto `json:"avatar,omitempty"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
IsRoot bool `json:"isRoot"`
Permissions []string `json:"permissions"`
Source []string `json:"source"`
NotAllowedLoginAdmin bool `json:"notAllowedLoginAdmin"`
}
// ListStaffInfo ...
type ListStaffInfo struct {
Staffs []StaffInfo `json:"staff"`
}
// FilePhoto ...
type FilePhoto struct {
ID primitive.ObjectID `json:"_id"`
Name string `json:"name,omitempty"`
Dimensions *FileDimensions `json:"dimensions"`
}
// FileSize ...
type FileSize struct {
Width int `json:"width"`
Height int `json:"height"`
URL string `json:"url"`
}
// FileDimensions ...
type FileDimensions struct {
Small *FileSize `json:"sm"`
Medium *FileSize `json:"md"`
}