You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
paopao-ce/mirc/web/v1/priv.go

88 lines
2.5 KiB

package v1
import (
. "github.com/alimy/mir/v3"
. "github.com/alimy/mir/v3/engine"
"github.com/rocboss/paopao-ce/internal/model/web"
)
func init() {
AddEntry(new(WebPriv))
}
// // 上传资源
// privApi.POST("/attachment", api.UploadAttachment)
// // 下载资源预检
// privApi.GET("/attachment/precheck", api.DownloadAttachmentPrecheck)
// // 下载资源
// privApi.GET("/attachment", api.DownloadAttachment)
// // 发布动态
// privApi.POST("/post", api.CreatePost)
// // 删除动态
// privApi.DELETE("/post", api.DeletePost)
// // 动态点赞操作
// privApi.POST("/post/star", api.PostStar)
// // 动态收藏操作
// privApi.POST("/post/collection", api.PostCollection)
// // 锁定动态
// privApi.POST("/post/lock", api.LockPost)
// // 置顶动态
// privApi.POST("/post/stick", api.StickPost)
// // 修改动态可见度
// privApi.POST("/post/visibility", api.VisiblePost)
// // 发布动态评论
// privApi.POST("/post/comment", api.CreatePostComment)
// // 删除动态评论
// privApi.DELETE("/post/comment", api.DeletePostComment)
// // 发布评论回复
// privApi.POST("/post/comment/reply", api.CreatePostCommentReply)
// // 删除评论回复
// privApi.DELETE("/post/comment/reply", api.DeletePostCommentReply)
type WebPriv struct {
Chain Chain `mir:"-"`
Group Group `mir:"v1"`
// UploadAttachment 上传资源
UploadAttachment func(Post) `mir:"/attachment"`
// DownloadAttachmentPrecheck 下载资源预检
DownloadAttachmentPrecheck func(Get) `mir:"/attachment/precheck"`
// DownloadAttachment 下载资源
DownloadAttachment func(Get) `mir:"/attachment"`
// CreateTweet 发布动态
CreateTweet func(Post, web.CreateTweetReq)web.CreateTweetResp `mir:"/post"`
// DeleteTweet 删除动态
DeleteTweet func(Delete) `mir:"/post"`
// StarTweet 动态点赞操作
StarTweet func(Post) `mir:"/post/start"`
// CollectionTweet 动态收藏操作
CollectionTweet func(Post) `mir:"/post/collection"`
// LockTweet 锁定动态
LockTweet func(Post) `mir:"/post/lock"`
// StickTweet 置顶动态
StickTweet func(Post) `mir:"/post/stick"`
// VisiblePost 修改动态可见度
VisiblePost func(Post) `mir:"/post/visibility"`
// CreateTweetComment 发布动态评论
CreateComment func(Post) `mir:"/post/comment"`
// DeletePostComment 删除动态评论
DeleteComment func(Delete) `mir:"/post/comment"`
// CreateCommentReply 发布评论回复
CreateCommentReply func(Post) `mir:"/post/comment/reply"`
// DeleteCommentReply 删除评论回复
DeleteCommentReply func(Delete) `mir:"/post/comment/reply"`
}