mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-09-03 04:43:01 +00:00
282 lines
6.6 KiB
Go
282 lines
6.6 KiB
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
"maps"
|
|
|
|
"github.com/QuantumNous/new-api/common"
|
|
)
|
|
|
|
const (
|
|
logOtherAdminInfoKey = "admin_info"
|
|
logOtherRootInfoKey = "root_info"
|
|
logOtherAuditInfoKey = "audit_info"
|
|
)
|
|
|
|
type logOtherVisibility int
|
|
|
|
const (
|
|
logOtherVisibilityUser logOtherVisibility = iota
|
|
logOtherVisibilityAdmin
|
|
logOtherVisibilityRoot
|
|
)
|
|
|
|
// LogOther separates usage-log metadata by the audience allowed to see it.
|
|
// Its maps stay private so callers cannot accidentally place privileged fields
|
|
// in the user-visible top level.
|
|
type LogOther struct {
|
|
public map[string]any
|
|
adminInfo map[string]any
|
|
rootInfo map[string]any
|
|
auditInfo map[string]any
|
|
}
|
|
|
|
func NewLogOther() *LogOther {
|
|
return &LogOther{}
|
|
}
|
|
|
|
func isReservedLogOtherKey(key string) bool {
|
|
switch key {
|
|
case logOtherAdminInfoKey, logOtherRootInfoKey, logOtherAuditInfoKey,
|
|
"channel_id", "channel_name", "channel_type", "reject_reason":
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
// SetPublic records metadata that log owners may receive from self/token log APIs.
|
|
// It rejects role-scoped and legacy-sensitive keys so new writers cannot recreate
|
|
// the historical channel/reject-reason leak.
|
|
func (o *LogOther) SetPublic(key string, value any) bool {
|
|
if o == nil || key == "" || isReservedLogOtherKey(key) {
|
|
return false
|
|
}
|
|
if o.public == nil {
|
|
o.public = make(map[string]any)
|
|
}
|
|
o.public[key] = value
|
|
return true
|
|
}
|
|
|
|
func (o *LogOther) MergePublic(values map[string]any) {
|
|
for key, value := range values {
|
|
o.SetPublic(key, value)
|
|
}
|
|
}
|
|
|
|
func (o *LogOther) SetAdmin(key string, value any) bool {
|
|
if o == nil || key == "" {
|
|
return false
|
|
}
|
|
if o.adminInfo == nil {
|
|
o.adminInfo = make(map[string]any)
|
|
}
|
|
o.adminInfo[key] = value
|
|
return true
|
|
}
|
|
|
|
func (o *LogOther) MergeAdmin(values map[string]any) {
|
|
for key, value := range values {
|
|
o.SetAdmin(key, value)
|
|
}
|
|
}
|
|
|
|
func (o *LogOther) SetRoot(key string, value any) bool {
|
|
if o == nil || key == "" {
|
|
return false
|
|
}
|
|
if o.rootInfo == nil {
|
|
o.rootInfo = make(map[string]any)
|
|
}
|
|
o.rootInfo[key] = value
|
|
return true
|
|
}
|
|
|
|
func (o *LogOther) MergeRoot(values map[string]any) {
|
|
for key, value := range values {
|
|
o.SetRoot(key, value)
|
|
}
|
|
}
|
|
|
|
func (o *LogOther) SetAudit(key string, value any) bool {
|
|
if o == nil || key == "" {
|
|
return false
|
|
}
|
|
if o.auditInfo == nil {
|
|
o.auditInfo = make(map[string]any)
|
|
}
|
|
o.auditInfo[key] = value
|
|
return true
|
|
}
|
|
|
|
func (o *LogOther) MergeAudit(values map[string]any) {
|
|
for key, value := range values {
|
|
o.SetAudit(key, value)
|
|
}
|
|
}
|
|
|
|
func copyLogOtherMap(values map[string]any) map[string]any {
|
|
if len(values) == 0 {
|
|
return nil
|
|
}
|
|
copyValues := make(map[string]any, len(values))
|
|
maps.Copy(copyValues, values)
|
|
return copyValues
|
|
}
|
|
|
|
func (o *LogOther) normalizeLegacyAdminFields() {
|
|
if o == nil || o.public == nil {
|
|
return
|
|
}
|
|
if rejectReason, ok := o.public["reject_reason"]; ok {
|
|
if _, exists := o.adminInfo["reject_reason"]; !exists {
|
|
o.SetAdmin("reject_reason", rejectReason)
|
|
}
|
|
delete(o.public, "reject_reason")
|
|
}
|
|
}
|
|
|
|
func (o *LogOther) toMap(visibility logOtherVisibility) map[string]any {
|
|
result := make(map[string]any)
|
|
if o == nil {
|
|
return result
|
|
}
|
|
|
|
for key, value := range o.public {
|
|
if visibility == logOtherVisibilityUser {
|
|
switch key {
|
|
case "channel_id", "channel_name", "channel_type", "reject_reason":
|
|
continue
|
|
}
|
|
}
|
|
result[key] = value
|
|
}
|
|
if visibility >= logOtherVisibilityAdmin {
|
|
if adminInfo := copyLogOtherMap(o.adminInfo); len(adminInfo) > 0 {
|
|
result[logOtherAdminInfoKey] = adminInfo
|
|
}
|
|
if auditInfo := copyLogOtherMap(o.auditInfo); len(auditInfo) > 0 {
|
|
result[logOtherAuditInfoKey] = auditInfo
|
|
}
|
|
}
|
|
if visibility == logOtherVisibilityRoot {
|
|
if rootInfo := copyLogOtherMap(o.rootInfo); len(rootInfo) > 0 {
|
|
result[logOtherRootInfoKey] = rootInfo
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (o *LogOther) jsonString(visibility logOtherVisibility) string {
|
|
if o == nil {
|
|
return ""
|
|
}
|
|
o.normalizeLegacyAdminFields()
|
|
data, err := common.Marshal(o.toMap(visibility))
|
|
if err != nil {
|
|
common.SysError("failed to marshal log other: " + err.Error())
|
|
return ""
|
|
}
|
|
return string(data)
|
|
}
|
|
|
|
// JSONString returns the complete stored representation, including all
|
|
// privileged scopes. API projections must use the role-specific formatter.
|
|
func (o *LogOther) JSONString() string {
|
|
return o.jsonString(logOtherVisibilityRoot)
|
|
}
|
|
|
|
// Snapshot returns a detached top-level view for tests and read-only
|
|
// inspection. Mutating it cannot add or replace fields in LogOther.
|
|
func (o *LogOther) Snapshot() map[string]any {
|
|
if o == nil {
|
|
return nil
|
|
}
|
|
return o.toMap(logOtherVisibilityRoot)
|
|
}
|
|
|
|
func (o *LogOther) MarshalJSON() ([]byte, error) {
|
|
return common.Marshal(o.toMap(logOtherVisibilityRoot))
|
|
}
|
|
|
|
func normalizeLegacyRejectReason(values map[string]json.RawMessage) bool {
|
|
rejectReason, ok := values["reject_reason"]
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
adminInfo := make(map[string]json.RawMessage)
|
|
if rawAdminInfo, exists := values[logOtherAdminInfoKey]; exists {
|
|
_ = common.Unmarshal(rawAdminInfo, &adminInfo)
|
|
}
|
|
if adminInfo == nil {
|
|
adminInfo = make(map[string]json.RawMessage)
|
|
}
|
|
if _, exists := adminInfo["reject_reason"]; !exists {
|
|
adminInfo["reject_reason"] = rejectReason
|
|
}
|
|
encodedAdminInfo, err := common.Marshal(adminInfo)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
values[logOtherAdminInfoKey] = encodedAdminInfo
|
|
delete(values, "reject_reason")
|
|
return true
|
|
}
|
|
|
|
// formatLogOtherJSON applies the role projection while keeping untouched JSON
|
|
// values as RawMessage. This preserves integers larger than JavaScript's safe
|
|
// range instead of round-tripping them through float64.
|
|
func formatLogOtherJSON(value string, visibility logOtherVisibility) string {
|
|
if value == "" {
|
|
return ""
|
|
}
|
|
|
|
var values map[string]json.RawMessage
|
|
if err := common.UnmarshalJsonStr(value, &values); err != nil {
|
|
if visibility == logOtherVisibilityRoot {
|
|
return value
|
|
}
|
|
return "{}"
|
|
}
|
|
|
|
changed := false
|
|
if visibility == logOtherVisibilityUser {
|
|
for _, key := range []string{
|
|
logOtherAdminInfoKey,
|
|
logOtherRootInfoKey,
|
|
logOtherAuditInfoKey,
|
|
"channel_id",
|
|
"channel_name",
|
|
"channel_type",
|
|
"reject_reason",
|
|
} {
|
|
if _, exists := values[key]; exists {
|
|
delete(values, key)
|
|
changed = true
|
|
}
|
|
}
|
|
} else {
|
|
changed = normalizeLegacyRejectReason(values)
|
|
if visibility == logOtherVisibilityAdmin {
|
|
if _, exists := values[logOtherRootInfoKey]; exists {
|
|
delete(values, logOtherRootInfoKey)
|
|
changed = true
|
|
}
|
|
}
|
|
}
|
|
|
|
if visibility == logOtherVisibilityRoot && !changed {
|
|
return value
|
|
}
|
|
formatted, err := common.Marshal(values)
|
|
if err != nil {
|
|
if visibility == logOtherVisibilityRoot {
|
|
return value
|
|
}
|
|
return "{}"
|
|
}
|
|
return string(formatted)
|
|
}
|