| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package api
- import "github.com/lejianwen/rustdesk-api/model"
- /*
- pub enum UserStatus {
- Disabled = 0,
- Normal = 1,
- Unverified = -1,
- }
- */
- /*
- UserPayload
- String name = ”;
- String email = ”;
- String note = ”;
- UserStatus status;
- bool isAdmin = false;
- */
- type UserPayload struct {
- Name string `json:"name"`
- Email string `json:"email"`
- Note string `json:"note"`
- IsAdmin *bool `json:"is_admin"`
- Status int `json:"status"`
- Info map[string]interface{} `json:"info"`
- }
- func (up *UserPayload) FromUser(user *model.User) *UserPayload {
- up.Name = user.Username
- up.Email = user.Email
- up.IsAdmin = user.IsAdmin
- up.Status = int(user.Status)
- up.Info = map[string]interface{}{}
- return up
- }
- /*
- class HttpType {
- static const kAuthReqTypeAccount = "account";
- static const kAuthReqTypeMobile = "mobile";
- static const kAuthReqTypeSMSCode = "sms_code";
- static const kAuthReqTypeEmailCode = "email_code";
- static const kAuthReqTypeTfaCode = "tfa_code";
- static const kAuthResTypeToken = "access_token";
- static const kAuthResTypeEmailCheck = "email_check";
- static const kAuthResTypeTfaCheck = "tfa_check";
- }
- */
- type LoginRes struct {
- Type string `json:"type"`
- AccessToken string `json:"access_token"`
- User UserPayload `json:"user"`
- Secret string `json:"secret,omitempty"`
- TfaType string `json:"tfa_type,omitempty"`
- }
|