// Copyright 2022 ROC. All rights reserved. // Use of this source code is governed by a MIT style // license that can be found in the LICENSE file. package web import ( "github.com/rocboss/paopao-ce/internal/core/ms" "github.com/rocboss/paopao-ce/pkg/version" ) type TweetDetailReq struct { TweetId int64 `form:"id"` } type TweetDetailResp ms.PostFormated type GetCaptchaResp struct { Id string `json:"id"` Content string `json:"b64s"` } type SendCaptchaReq struct { Phone string `json:"phone" form:"phone" binding:"required"` ImgCaptcha string `json:"img_captcha" form:"img_captcha" binding:"required"` ImgCaptchaID string `json:"img_captcha_id" form:"img_captcha_id" binding:"required"` } type VersionResp struct { BuildInfo *version.BuildInfo `json:"build_info"` } type LoginReq struct { Username string `json:"username" form:"username" binding:"required"` Password string `json:"password" form:"password" binding:"required"` } type LoginResp struct { Token string `json:"token"` } type RegisterReq struct { Username string `json:"username" form:"username" binding:"required"` Password string `json:"password" form:"password" binding:"required"` } type RegisterResp struct { UserId int64 `json:"id"` Username string `json:"username"` } // ThirdPartyLoginReq 第三方登录请求参数 type ThirdPartyLoginReq struct { RequestType string `json:"request_type" form:"request_type" binding:"required"` } // ThirdPartyUserDataReq 第三方登录获取用户数据请求参数 type ThirdPartyUserDataReq struct { Type string `json:"type" form:"type" binding:"required"` Code string `json:"code" form:"code" binding:"required"` }