mirror of https://github.com/rocboss/paopao-ce
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.
41 lines
760 B
41 lines
760 B
// Copyright 2023 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
|
|
|
|
const (
|
|
AuditStyleUnknown AuditStyle = iota
|
|
AuditStyleUserTweet
|
|
AuditStyleUserTweetComment
|
|
AuditStyleUserTweetReply
|
|
)
|
|
|
|
const (
|
|
AuditHookCtxKey = "audit_ctx_key"
|
|
OnlineUserCtxKey = "online_user_ctx_key"
|
|
)
|
|
|
|
type AuditStyle uint8
|
|
|
|
type AuditMetaInfo struct {
|
|
Style AuditStyle
|
|
Id int64
|
|
}
|
|
|
|
func (s AuditStyle) String() (res string) {
|
|
switch s {
|
|
case AuditStyleUserTweet:
|
|
res = "UserTweet"
|
|
case AuditStyleUserTweetComment:
|
|
res = "UserTweetComment"
|
|
case AuditStyleUserTweetReply:
|
|
res = "UserTweetReply"
|
|
case AuditStyleUnknown:
|
|
fallthrough
|
|
default:
|
|
res = "Unknown"
|
|
}
|
|
return
|
|
}
|