Files
focalboard/server/model/user.go
T

104 lines
2.3 KiB
Go
Raw Normal View History

2020-10-28 14:35:41 +01:00
package model
import (
"encoding/json"
"io"
)
const (
SingleUser = "single-user"
GlobalTeamID = "0"
SystemUserID = "system"
)
2021-02-17 11:29:20 -08:00
// User is a user
// swagger:model
2020-10-28 14:35:41 +01:00
type User struct {
2021-02-17 11:29:20 -08:00
// The user ID
// required: true
ID string `json:"id"`
// The user name
// required: true
Username string `json:"username"`
// The user's email
// required: true
2021-12-09 01:17:47 +05:30
Email string `json:"-"`
2021-02-17 11:29:20 -08:00
2022-07-08 08:43:43 -06:00
// The user's nickname
Nickname string `json:"nickname"`
// The user's first name
FirstName string `json:"firstname"`
// The user's last name
LastName string `json:"lastname"`
2021-02-17 11:29:20 -08:00
// swagger:ignore
Password string `json:"-"`
// swagger:ignore
MfaSecret string `json:"-"`
// swagger:ignore
AuthService string `json:"-"`
// swagger:ignore
AuthData string `json:"-"`
// User settings
// required: true
Props map[string]interface{} `json:"props"`
2022-04-15 10:21:10 -07:00
// Created time in miliseconds since the current epoch
2021-02-17 11:29:20 -08:00
// required: true
CreateAt int64 `json:"create_at,omitempty"`
2022-04-15 10:21:10 -07:00
// Updated time in miliseconds since the current epoch
2021-02-17 11:29:20 -08:00
// required: true
UpdateAt int64 `json:"update_at,omitempty"`
2022-04-15 10:21:10 -07:00
// Deleted time in miliseconds since the current epoch, set to indicate user is deleted
2021-02-17 11:29:20 -08:00
// required: true
DeleteAt int64 `json:"delete_at"`
// If the user is a bot or not
// required: true
IsBot bool `json:"is_bot"`
// If the user is a guest or not
// required: true
IsGuest bool `json:"is_guest"`
2022-06-29 18:05:24 +05:30
Roles string `json:"roles"`
2020-10-28 14:35:41 +01:00
}
2020-12-02 21:12:14 +01:00
+1
2022-03-22 15:24:34 +01:00
// UserPropPatch is a user property patch
// swagger:model
type UserPropPatch struct {
// The user prop updated fields
// required: false
UpdatedFields map[string]string `json:"updatedFields"`
// The user prop removed fields
// required: false
DeletedFields []string `json:"deletedFields"`
}
2020-12-02 21:12:14 +01:00
type Session struct {
2021-03-26 11:01:54 -07:00
ID string `json:"id"`
Token string `json:"token"`
UserID string `json:"user_id"`
AuthService string `json:"authService"`
Props map[string]interface{} `json:"props"`
CreateAt int64 `json:"create_at,omitempty"`
UpdateAt int64 `json:"update_at,omitempty"`
2020-12-02 21:12:14 +01:00
}
func UserFromJSON(data io.Reader) (*User, error) {
var user User
if err := json.NewDecoder(data).Decode(&user); err != nil {
return nil, err
}
return &user, nil
}