2022-09-27 17:59:05 +08:00
|
|
|
|
package schema
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
2022-10-14 17:01:06 +08:00
|
|
|
|
"regexp"
|
2022-09-27 17:59:05 +08:00
|
|
|
|
|
2022-10-24 16:51:05 +08:00
|
|
|
|
"github.com/answerdev/answer/internal/base/reason"
|
|
|
|
|
"github.com/answerdev/answer/internal/base/validator"
|
|
|
|
|
"github.com/answerdev/answer/internal/entity"
|
|
|
|
|
"github.com/answerdev/answer/pkg/checker"
|
2022-09-27 17:59:05 +08:00
|
|
|
|
"github.com/jinzhu/copier"
|
2022-10-14 17:01:06 +08:00
|
|
|
|
"github.com/segmentfault/pacman/errors"
|
2022-09-27 17:59:05 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// UserVerifyEmailReq user verify email request
|
|
|
|
|
type UserVerifyEmailReq struct {
|
|
|
|
|
// code
|
|
|
|
|
Code string `validate:"required,gt=0,lte=500" form:"code"`
|
|
|
|
|
// content
|
|
|
|
|
Content string `json:"-"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetUserResp get user response
|
|
|
|
|
type GetUserResp struct {
|
|
|
|
|
// user id
|
|
|
|
|
ID string `json:"id"`
|
|
|
|
|
// create time
|
|
|
|
|
CreatedAt int64 `json:"created_at"`
|
|
|
|
|
// last login date
|
|
|
|
|
LastLoginDate int64 `json:"last_login_date"`
|
|
|
|
|
// username
|
|
|
|
|
Username string `json:"username"`
|
|
|
|
|
// email
|
|
|
|
|
EMail string `json:"e_mail"`
|
|
|
|
|
// mail status(1 pass 2 to be verified)
|
|
|
|
|
MailStatus int `json:"mail_status"`
|
|
|
|
|
// notice status(1 on 2off)
|
|
|
|
|
NoticeStatus int `json:"notice_status"`
|
|
|
|
|
// follow count
|
|
|
|
|
FollowCount int `json:"follow_count"`
|
|
|
|
|
// answer count
|
|
|
|
|
AnswerCount int `json:"answer_count"`
|
|
|
|
|
// question count
|
|
|
|
|
QuestionCount int `json:"question_count"`
|
|
|
|
|
// rank
|
|
|
|
|
Rank int `json:"rank"`
|
|
|
|
|
// authority group
|
|
|
|
|
AuthorityGroup int `json:"authority_group"`
|
|
|
|
|
// display name
|
|
|
|
|
DisplayName string `json:"display_name"`
|
|
|
|
|
// avatar
|
|
|
|
|
Avatar string `json:"avatar"`
|
|
|
|
|
// mobile
|
|
|
|
|
Mobile string `json:"mobile"`
|
|
|
|
|
// bio markdown
|
|
|
|
|
Bio string `json:"bio"`
|
|
|
|
|
// bio html
|
2022-11-01 15:25:44 +08:00
|
|
|
|
BioHTML string `json:"bio_html"`
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// website
|
|
|
|
|
Website string `json:"website"`
|
|
|
|
|
// location
|
|
|
|
|
Location string `json:"location"`
|
|
|
|
|
// ip info
|
|
|
|
|
IPInfo string `json:"ip_info"`
|
2022-11-02 15:25:27 +08:00
|
|
|
|
// language
|
|
|
|
|
Language string `json:"language"`
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// access token
|
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
|
// is admin
|
|
|
|
|
IsAdmin bool `json:"is_admin"`
|
|
|
|
|
// user status
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (r *GetUserResp) GetFromUserEntity(userInfo *entity.User) {
|
|
|
|
|
_ = copier.Copy(r, userInfo)
|
2022-10-31 11:04:51 +08:00
|
|
|
|
r.Avatar = FormatAvatarInfo(userInfo.Avatar)
|
2022-09-27 17:59:05 +08:00
|
|
|
|
r.CreatedAt = userInfo.CreatedAt.Unix()
|
|
|
|
|
r.LastLoginDate = userInfo.LastLoginDate.Unix()
|
|
|
|
|
statusShow, ok := UserStatusShow[userInfo.Status]
|
|
|
|
|
if ok {
|
|
|
|
|
r.Status = statusShow
|
|
|
|
|
}
|
2022-09-28 14:22:55 +08:00
|
|
|
|
}
|
2022-09-27 17:59:05 +08:00
|
|
|
|
|
2022-10-28 15:43:37 +08:00
|
|
|
|
type GetUserToSetShowResp struct {
|
|
|
|
|
*GetUserResp
|
|
|
|
|
Avatar *AvatarInfo `json:"avatar"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (r *GetUserToSetShowResp) GetFromUserEntity(userInfo *entity.User) {
|
|
|
|
|
_ = copier.Copy(r, userInfo)
|
|
|
|
|
r.CreatedAt = userInfo.CreatedAt.Unix()
|
|
|
|
|
r.LastLoginDate = userInfo.LastLoginDate.Unix()
|
|
|
|
|
statusShow, ok := UserStatusShow[userInfo.Status]
|
|
|
|
|
if ok {
|
|
|
|
|
r.Status = statusShow
|
|
|
|
|
}
|
2022-10-28 17:13:49 +08:00
|
|
|
|
avatarInfo := &AvatarInfo{}
|
2022-11-01 17:05:12 +08:00
|
|
|
|
_ = json.Unmarshal([]byte(userInfo.Avatar), avatarInfo)
|
|
|
|
|
// if json.Unmarshal Error avatarInfo.Type is Empty
|
2022-10-28 17:13:49 +08:00
|
|
|
|
r.Avatar = avatarInfo
|
2022-10-28 15:43:37 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-31 11:04:51 +08:00
|
|
|
|
func FormatAvatarInfo(avatarJson string) string {
|
2022-10-28 15:21:23 +08:00
|
|
|
|
if avatarJson == "" {
|
2022-10-28 14:53:44 +08:00
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
AvatarInfo := &AvatarInfo{}
|
2022-10-28 15:21:23 +08:00
|
|
|
|
err := json.Unmarshal([]byte(avatarJson), AvatarInfo)
|
2022-10-28 14:53:44 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
switch AvatarInfo.Type {
|
|
|
|
|
case "gravatar":
|
|
|
|
|
return AvatarInfo.Gravatar
|
|
|
|
|
case "custom":
|
|
|
|
|
return AvatarInfo.Custom
|
|
|
|
|
default:
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-28 14:22:55 +08:00
|
|
|
|
// GetUserStatusResp get user status info
|
|
|
|
|
type GetUserStatusResp struct {
|
|
|
|
|
// user status
|
|
|
|
|
Status string `json:"status"`
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetOtherUserInfoByUsernameResp get user response
|
|
|
|
|
type GetOtherUserInfoByUsernameResp struct {
|
|
|
|
|
// user id
|
|
|
|
|
ID string `json:"id"`
|
|
|
|
|
// create time
|
|
|
|
|
CreatedAt int64 `json:"created_at"`
|
|
|
|
|
// last login date
|
|
|
|
|
LastLoginDate int64 `json:"last_login_date"`
|
|
|
|
|
// username
|
|
|
|
|
Username string `json:"username"`
|
|
|
|
|
// email
|
|
|
|
|
// follow count
|
|
|
|
|
FollowCount int `json:"follow_count"`
|
|
|
|
|
// answer count
|
|
|
|
|
AnswerCount int `json:"answer_count"`
|
|
|
|
|
// question count
|
|
|
|
|
QuestionCount int `json:"question_count"`
|
|
|
|
|
// rank
|
|
|
|
|
Rank int `json:"rank"`
|
|
|
|
|
// display name
|
|
|
|
|
DisplayName string `json:"display_name"`
|
|
|
|
|
// avatar
|
|
|
|
|
Avatar string `json:"avatar"`
|
|
|
|
|
// mobile
|
|
|
|
|
Mobile string `json:"mobile"`
|
|
|
|
|
// bio markdown
|
|
|
|
|
Bio string `json:"bio"`
|
|
|
|
|
// bio html
|
2022-11-01 15:25:44 +08:00
|
|
|
|
BioHTML string `json:"bio_html"`
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// website
|
|
|
|
|
Website string `json:"website"`
|
|
|
|
|
// location
|
|
|
|
|
Location string `json:"location"`
|
|
|
|
|
// ip info
|
|
|
|
|
IPInfo string `json:"ip_info"`
|
|
|
|
|
// is admin
|
|
|
|
|
IsAdmin bool `json:"is_admin"`
|
|
|
|
|
Status string `json:"status"`
|
|
|
|
|
StatusMsg string `json:"status_msg,omitempty"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (r *GetOtherUserInfoByUsernameResp) GetFromUserEntity(userInfo *entity.User) {
|
|
|
|
|
_ = copier.Copy(r, userInfo)
|
2022-10-31 11:04:51 +08:00
|
|
|
|
Avatar := FormatAvatarInfo(userInfo.Avatar)
|
|
|
|
|
r.Avatar = Avatar
|
|
|
|
|
|
2022-09-27 17:59:05 +08:00
|
|
|
|
r.CreatedAt = userInfo.CreatedAt.Unix()
|
|
|
|
|
r.LastLoginDate = userInfo.LastLoginDate.Unix()
|
|
|
|
|
statusShow, ok := UserStatusShow[userInfo.Status]
|
|
|
|
|
if ok {
|
|
|
|
|
r.Status = statusShow
|
|
|
|
|
}
|
|
|
|
|
if userInfo.MailStatus == entity.EmailStatusToBeVerified {
|
|
|
|
|
statusMsgShow, ok := UserStatusShowMsg[11]
|
|
|
|
|
if ok {
|
|
|
|
|
r.StatusMsg = statusMsgShow
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
statusMsgShow, ok := UserStatusShowMsg[userInfo.Status]
|
|
|
|
|
if ok {
|
|
|
|
|
r.StatusMsg = statusMsgShow
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const (
|
2022-11-01 15:25:44 +08:00
|
|
|
|
MailStatePass = 1
|
|
|
|
|
MailStateVerifi = 2
|
2022-09-27 17:59:05 +08:00
|
|
|
|
|
2022-11-01 16:22:51 +08:00
|
|
|
|
NoticeStatusOn = 1
|
|
|
|
|
NoticeStatusOff = 2
|
|
|
|
|
|
2022-10-28 19:28:08 +08:00
|
|
|
|
ActionRecordTypeLogin = "login"
|
|
|
|
|
ActionRecordTypeEmail = "e_mail"
|
|
|
|
|
ActionRecordTypeFindPass = "find_pass"
|
2022-09-27 17:59:05 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var UserStatusShow = map[int]string{
|
|
|
|
|
1: "normal",
|
|
|
|
|
9: "forbidden",
|
2022-09-29 15:27:56 +08:00
|
|
|
|
10: "deleted",
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
2022-11-01 15:25:44 +08:00
|
|
|
|
|
2022-09-27 17:59:05 +08:00
|
|
|
|
var UserStatusShowMsg = map[int]string{
|
|
|
|
|
1: "",
|
|
|
|
|
9: "<strong>This user was suspended forever.</strong> This user doesn’t meet a community guideline.",
|
|
|
|
|
10: "This user was deleted.",
|
|
|
|
|
11: "This user is inactive.",
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// EmailLogin
|
|
|
|
|
type UserEmailLogin struct {
|
2022-11-17 17:57:13 +08:00
|
|
|
|
Email string `validate:"required,email,gt=0,lte=500" json:"e_mail"` // e_mail
|
|
|
|
|
Pass string `validate:"required,gte=8,lte=32" json:"pass"` // password
|
|
|
|
|
CaptchaID string `json:"captcha_id"` // captcha_id
|
|
|
|
|
CaptchaCode string `json:"captcha_code"` // captcha_code
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-14 17:01:06 +08:00
|
|
|
|
// UserRegisterReq user register request
|
|
|
|
|
type UserRegisterReq struct {
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// name
|
2022-10-14 17:01:06 +08:00
|
|
|
|
Name string `validate:"required,gt=4,lte=30" json:"name"`
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// email
|
|
|
|
|
Email string `validate:"required,email,gt=0,lte=500" json:"e_mail" `
|
|
|
|
|
// password
|
|
|
|
|
Pass string `validate:"required,gte=8,lte=32" json:"pass"`
|
|
|
|
|
IP string `json:"-" `
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-17 17:57:13 +08:00
|
|
|
|
func (u *UserRegisterReq) Check() (errFields []*validator.FormErrorField, err error) {
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// TODO i18n
|
2022-10-22 18:40:12 +08:00
|
|
|
|
err = checker.CheckPassword(8, 32, 0, u.Pass)
|
2022-09-27 17:59:05 +08:00
|
|
|
|
if err != nil {
|
2022-11-17 17:57:13 +08:00
|
|
|
|
errField := &validator.FormErrorField{
|
|
|
|
|
ErrorField: "pass",
|
|
|
|
|
ErrorMsg: err.Error(),
|
|
|
|
|
}
|
|
|
|
|
errFields = append(errFields, errField)
|
|
|
|
|
return errFields, err
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// UserModifyPassWordRequest
|
|
|
|
|
type UserModifyPassWordRequest struct {
|
2022-11-01 15:25:44 +08:00
|
|
|
|
UserID string `json:"-" ` // user_id
|
2022-09-27 17:59:05 +08:00
|
|
|
|
OldPass string `json:"old_pass" ` // old password
|
|
|
|
|
Pass string `json:"pass" ` // password
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-17 17:57:13 +08:00
|
|
|
|
func (u *UserModifyPassWordRequest) Check() (errFields []*validator.FormErrorField, err error) {
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// TODO i18n
|
2022-10-22 18:40:12 +08:00
|
|
|
|
err = checker.CheckPassword(8, 32, 0, u.Pass)
|
2022-09-27 17:59:05 +08:00
|
|
|
|
if err != nil {
|
2022-11-17 17:57:13 +08:00
|
|
|
|
errField := &validator.FormErrorField{
|
|
|
|
|
ErrorField: "pass",
|
|
|
|
|
ErrorMsg: err.Error(),
|
|
|
|
|
}
|
|
|
|
|
errFields = append(errFields, errField)
|
|
|
|
|
return errFields, err
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UpdateInfoRequest struct {
|
2022-09-29 16:39:34 +08:00
|
|
|
|
// display_name
|
|
|
|
|
DisplayName string `validate:"required,gt=0,lte=30" json:"display_name"`
|
2022-10-14 17:01:06 +08:00
|
|
|
|
// username
|
|
|
|
|
Username string `validate:"omitempty,gt=0,lte=30" json:"username"`
|
2022-09-29 16:39:34 +08:00
|
|
|
|
// avatar
|
2022-10-28 14:53:44 +08:00
|
|
|
|
Avatar AvatarInfo `json:"avatar"`
|
2022-09-29 16:39:34 +08:00
|
|
|
|
// bio
|
|
|
|
|
Bio string `validate:"omitempty,gt=0,lte=4096" json:"bio"`
|
|
|
|
|
// bio
|
2022-11-01 15:25:44 +08:00
|
|
|
|
BioHTML string `validate:"omitempty,gt=0,lte=4096" json:"bio_html"`
|
2022-09-29 16:39:34 +08:00
|
|
|
|
// website
|
|
|
|
|
Website string `validate:"omitempty,gt=0,lte=500" json:"website"`
|
|
|
|
|
// location
|
|
|
|
|
Location string `validate:"omitempty,gt=0,lte=100" json:"location"`
|
|
|
|
|
// user id
|
2022-11-01 15:25:44 +08:00
|
|
|
|
UserID string `json:"-" `
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-10-28 14:53:44 +08:00
|
|
|
|
type AvatarInfo struct {
|
|
|
|
|
Type string `validate:"omitempty,gt=0,lte=100" json:"type"`
|
|
|
|
|
Gravatar string `validate:"omitempty,gt=0,lte=200" json:"gravatar"`
|
|
|
|
|
Custom string `validate:"omitempty,gt=0,lte=200" json:"custom"`
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-17 17:57:13 +08:00
|
|
|
|
func (u *UpdateInfoRequest) Check() (errFields []*validator.FormErrorField, err error) {
|
2022-10-14 17:01:06 +08:00
|
|
|
|
if len(u.Username) > 0 {
|
|
|
|
|
re := regexp.MustCompile(`^[a-z0-9._-]{4,30}$`)
|
|
|
|
|
match := re.MatchString(u.Username)
|
|
|
|
|
if !match {
|
2022-11-17 17:57:13 +08:00
|
|
|
|
errField := &validator.FormErrorField{
|
|
|
|
|
ErrorField: "username",
|
|
|
|
|
ErrorMsg: err.Error(),
|
|
|
|
|
}
|
|
|
|
|
errFields = append(errFields, errField)
|
|
|
|
|
return errFields, errors.BadRequest(reason.UsernameInvalid)
|
2022-10-14 17:01:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-02 15:25:27 +08:00
|
|
|
|
// UpdateUserInterfaceRequest update user interface request
|
|
|
|
|
type UpdateUserInterfaceRequest struct {
|
|
|
|
|
// language
|
|
|
|
|
Language string `validate:"required,gt=1,lte=100" json:"language"`
|
|
|
|
|
// user id
|
|
|
|
|
UserId string `json:"-" `
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-27 17:59:05 +08:00
|
|
|
|
type UserRetrievePassWordRequest struct {
|
|
|
|
|
Email string `validate:"required,email,gt=0,lte=500" json:"e_mail" ` // e_mail
|
|
|
|
|
CaptchaID string `json:"captcha_id" ` // captcha_id
|
|
|
|
|
CaptchaCode string `json:"captcha_code" ` // captcha_code
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserRePassWordRequest struct {
|
|
|
|
|
Code string `validate:"required,gt=0,lte=100" json:"code" ` // code
|
|
|
|
|
Pass string `validate:"required,gt=0,lte=32" json:"pass" ` // Password
|
|
|
|
|
Content string `json:"-"`
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-17 17:57:13 +08:00
|
|
|
|
func (u *UserRePassWordRequest) Check() (errFields []*validator.FormErrorField, err error) {
|
2022-09-27 17:59:05 +08:00
|
|
|
|
// TODO i18n
|
2022-10-22 18:40:12 +08:00
|
|
|
|
err = checker.CheckPassword(8, 32, 0, u.Pass)
|
2022-09-27 17:59:05 +08:00
|
|
|
|
if err != nil {
|
2022-11-17 17:57:13 +08:00
|
|
|
|
errField := &validator.FormErrorField{
|
|
|
|
|
ErrorField: "pass",
|
|
|
|
|
ErrorMsg: err.Error(),
|
|
|
|
|
}
|
|
|
|
|
errFields = append(errFields, errField)
|
|
|
|
|
return errFields, err
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
return nil, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserNoticeSetRequest struct {
|
2022-11-01 15:25:44 +08:00
|
|
|
|
UserID string `json:"-" ` // user_id
|
2022-09-27 17:59:05 +08:00
|
|
|
|
NoticeSwitch bool `json:"notice_switch" `
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserNoticeSetResp struct {
|
|
|
|
|
NoticeSwitch bool `json:"notice_switch"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ActionRecordReq struct {
|
|
|
|
|
// action
|
|
|
|
|
Action string `validate:"required,oneof=login e_mail find_pass" form:"action"`
|
2022-11-01 15:25:44 +08:00
|
|
|
|
IP string `json:"-"`
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ActionRecordResp struct {
|
|
|
|
|
CaptchaID string `json:"captcha_id"`
|
|
|
|
|
CaptchaImg string `json:"captcha_img"`
|
|
|
|
|
Verify bool `json:"verify"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserBasicInfo struct {
|
2022-09-29 15:27:56 +08:00
|
|
|
|
ID string `json:"-" ` // user_id
|
|
|
|
|
Username string `json:"username" ` // name
|
2022-09-27 17:59:05 +08:00
|
|
|
|
Rank int `json:"rank" ` // rank
|
|
|
|
|
DisplayName string `json:"display_name"` // display_name
|
|
|
|
|
Avatar string `json:"avatar" ` // avatar
|
|
|
|
|
Website string `json:"website" ` // website
|
|
|
|
|
Location string `json:"location" ` // location
|
2022-11-01 15:25:44 +08:00
|
|
|
|
IPInfo string `json:"ip_info"` // ip info
|
2022-09-29 15:27:56 +08:00
|
|
|
|
Status string `json:"status"` // status
|
2022-09-27 17:59:05 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GetOtherUserInfoByUsernameReq struct {
|
|
|
|
|
Username string `validate:"required,gt=0,lte=500" form:"username"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GetOtherUserInfoResp struct {
|
|
|
|
|
Info *GetOtherUserInfoByUsernameResp `json:"info"`
|
|
|
|
|
Has bool `json:"has"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserChangeEmailSendCodeReq struct {
|
2022-10-28 15:07:19 +08:00
|
|
|
|
UserVerifyEmailSendReq
|
2022-09-27 17:59:05 +08:00
|
|
|
|
Email string `validate:"required,email,gt=0,lte=500" json:"e_mail"`
|
|
|
|
|
UserID string `json:"-"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type EmailCodeContent struct {
|
|
|
|
|
Email string `json:"e_mail"`
|
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (r *EmailCodeContent) ToJSONString() string {
|
|
|
|
|
codeBytes, _ := json.Marshal(r)
|
|
|
|
|
return string(codeBytes)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (r *EmailCodeContent) FromJSONString(data string) error {
|
|
|
|
|
return json.Unmarshal([]byte(data), &r)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserChangeEmailVerifyReq struct {
|
|
|
|
|
Code string `validate:"required,gt=0,lte=500" json:"code"`
|
|
|
|
|
Content string `json:"-"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type UserVerifyEmailSendReq struct {
|
|
|
|
|
CaptchaID string `validate:"omitempty,gt=0,lte=500" json:"captcha_id"`
|
|
|
|
|
CaptchaCode string `validate:"omitempty,gt=0,lte=500" json:"captcha_code"`
|
|
|
|
|
}
|