memos/api/user.go

58 lines
1.1 KiB
Go
Raw Normal View History

2021-12-08 18:43:14 +03:00
package api
// Role is the type of a role.
type Role string
const (
// Owner is the OWNER role.
Owner Role = "OWNER"
// NormalUser is the USER role.
NormalUser Role = "USER"
)
2022-02-03 10:32:03 +03:00
type User struct {
2022-05-03 06:49:10 +03:00
ID int `json:"id"`
// Standard fields
CreatedTs int64 `json:"createdTs"`
UpdatedTs int64 `json:"updatedTs"`
2022-02-03 10:32:03 +03:00
2022-05-03 06:49:10 +03:00
// Domain specific fields
Email string `json:"email"`
Role Role `json:"role"`
2022-02-06 11:19:20 +03:00
Name string `json:"name"`
PasswordHash string `json:"-"`
OpenID string `json:"openId"`
2021-12-08 18:43:14 +03:00
}
2022-02-03 10:32:03 +03:00
type UserCreate struct {
2022-05-03 06:49:10 +03:00
// Domain specific fields
Email string
Role Role
2022-02-06 11:19:20 +03:00
Name string
PasswordHash string
OpenID string
2021-12-09 17:02:57 +03:00
}
2022-02-03 10:32:03 +03:00
type UserPatch struct {
2022-05-02 21:05:43 +03:00
ID int
2021-12-14 15:40:24 +03:00
2022-05-03 06:49:10 +03:00
// Domain specific fields
Email *string `json:"email"`
2022-05-03 06:49:10 +03:00
Name *string `json:"name"`
Password *string `json:"password"`
ResetOpenID *bool `json:"resetOpenId"`
PasswordHash *string
OpenID *string
2021-12-14 15:40:24 +03:00
}
2022-02-03 10:32:03 +03:00
type UserFind struct {
2022-05-02 21:05:43 +03:00
ID *int `json:"id"`
2021-12-09 17:02:57 +03:00
2022-05-03 06:49:10 +03:00
// Domain specific fields
Email *string `json:"email"`
Role *Role
2022-02-06 11:19:20 +03:00
Name *string `json:"name"`
2022-05-02 21:05:43 +03:00
OpenID *string
2021-12-08 18:43:14 +03:00
}