2ac56dbfba
* Ported view limits to main * lint fix * Added tests * Added tests * Fixed a server test * fixed webapp test * fixed webapp test * fixing some tests * implement check when duplicating views * Fixed webapp tests * Fixed webapp tests * Fixed webapp tests * Trying without race test * Lets race again * Made error descriptive * Minor improvements * Updates snapshots for changed alt text * Updates snapshots for changed alt text Co-authored-by: Scott Bishel <scott.bishel@mattermost.com>
96 lines
2.1 KiB
Go
96 lines
2.1 KiB
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io"
|
|
)
|
|
|
|
const (
|
|
SingleUser = "single-user"
|
|
GlobalTeamID = "0"
|
|
SystemUserID = "system"
|
|
)
|
|
|
|
// User is a user
|
|
// swagger:model
|
|
type User struct {
|
|
// The user ID
|
|
// required: true
|
|
ID string `json:"id"`
|
|
|
|
// The user name
|
|
// required: true
|
|
Username string `json:"username"`
|
|
|
|
// The user's email
|
|
// required: true
|
|
Email string `json:"-"`
|
|
|
|
// 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"`
|
|
|
|
// Created time in miliseconds since the current epoch
|
|
// required: true
|
|
CreateAt int64 `json:"create_at,omitempty"`
|
|
|
|
// Updated time in miliseconds since the current epoch
|
|
// required: true
|
|
UpdateAt int64 `json:"update_at,omitempty"`
|
|
|
|
// Deleted time in miliseconds since the current epoch, set to indicate user is deleted
|
|
// 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"`
|
|
|
|
Roles string `json:"roles"`
|
|
}
|
|
|
|
// 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"`
|
|
}
|
|
|
|
type Session struct {
|
|
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"`
|
|
}
|
|
|
|
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
|
|
}
|