// 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" "github.com/rocboss/paopao-ce/internal/servants/base" "github.com/rocboss/paopao-ce/pkg/debug" ) const ( TagTypeHot TagType = "hot" TagTypeNew TagType = "new" ) type TagType string type TweetDetailReq struct { TweetId int64 `form:"id"` } type TweetDetailResp core.PostFormated type TweetCommentsReq struct { TweetId int64 `form:"id"` Page int `form:"-"` PageSize int `form:"-"` } type TweetCommentsResp base.PageResp type TopicListReq struct { Type TagType `json:"type" form:"type" binding:"required"` Num int `json:"num" form:"num" binding:"required"` } // TopicListResp 主题返回值 // TODO: 优化内容定义 type TopicListResp struct { Topics []*core.TagFormated `json:"topics"` } 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 *debug.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"` }