新增功能: - 新增 TLS 指纹 Profile CRUD 管理(Ent schema + 迁移 + Admin API + 前端管理界面) - 支持账号绑定数据库中的自定义 TLS Profile,或随机选择(profile_id=-1) - HTTPUpstream.DoWithTLS 接口从 bool 改为 *tlsfingerprint.Profile,支持按账号指定 Profile - AccountUsageService 注入 TLSFingerprintProfileService,统一 usage 场景与网关的 Profile 解析逻辑 代码优化: - 删除已被 TLSFingerprintProfileService 完全取代的 registry.go 死代码(418 行) - 提取 3 个 dialer 的重复 TLS 握手逻辑为 performTLSHandshake() 共用函数 - 修复 GetTLSFingerprintProfileID 缺少 json.Number 处理的 bug - gateway_service.Forward 中 ResolveTLSProfile 从重试循环内重复调用改为预解析局部变量 - 删除冗余的 buildClientHelloSpec() 单行 wrapper 和 int64(e.ID) 无效转换 - tls_fingerprint_profile_cache.go 日志从 log.Printf 改为 slog 结构化日志 - dialer_capture_test.go 添加 //go:build integration 标签,防止 CI 失败 - 去重 TestProfileExpectation 类型至共享 test_types_test.go - 修复 9 个测试文件缺少 tlsfingerprint import 的编译错误 - 修复 error_policy_integration_test.go 中 handleError 回调签名被错误替换的问题
122 lines
4.4 KiB
Go
122 lines
4.4 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package tlsfingerprintprofile
|
|
|
|
import (
|
|
"time"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
)
|
|
|
|
const (
|
|
// Label holds the string label denoting the tlsfingerprintprofile type in the database.
|
|
Label = "tls_fingerprint_profile"
|
|
// FieldID holds the string denoting the id field in the database.
|
|
FieldID = "id"
|
|
// FieldCreatedAt holds the string denoting the created_at field in the database.
|
|
FieldCreatedAt = "created_at"
|
|
// FieldUpdatedAt holds the string denoting the updated_at field in the database.
|
|
FieldUpdatedAt = "updated_at"
|
|
// FieldName holds the string denoting the name field in the database.
|
|
FieldName = "name"
|
|
// FieldDescription holds the string denoting the description field in the database.
|
|
FieldDescription = "description"
|
|
// FieldEnableGrease holds the string denoting the enable_grease field in the database.
|
|
FieldEnableGrease = "enable_grease"
|
|
// FieldCipherSuites holds the string denoting the cipher_suites field in the database.
|
|
FieldCipherSuites = "cipher_suites"
|
|
// FieldCurves holds the string denoting the curves field in the database.
|
|
FieldCurves = "curves"
|
|
// FieldPointFormats holds the string denoting the point_formats field in the database.
|
|
FieldPointFormats = "point_formats"
|
|
// FieldSignatureAlgorithms holds the string denoting the signature_algorithms field in the database.
|
|
FieldSignatureAlgorithms = "signature_algorithms"
|
|
// FieldAlpnProtocols holds the string denoting the alpn_protocols field in the database.
|
|
FieldAlpnProtocols = "alpn_protocols"
|
|
// FieldSupportedVersions holds the string denoting the supported_versions field in the database.
|
|
FieldSupportedVersions = "supported_versions"
|
|
// FieldKeyShareGroups holds the string denoting the key_share_groups field in the database.
|
|
FieldKeyShareGroups = "key_share_groups"
|
|
// FieldPskModes holds the string denoting the psk_modes field in the database.
|
|
FieldPskModes = "psk_modes"
|
|
// FieldExtensions holds the string denoting the extensions field in the database.
|
|
FieldExtensions = "extensions"
|
|
// Table holds the table name of the tlsfingerprintprofile in the database.
|
|
Table = "tls_fingerprint_profiles"
|
|
)
|
|
|
|
// Columns holds all SQL columns for tlsfingerprintprofile fields.
|
|
var Columns = []string{
|
|
FieldID,
|
|
FieldCreatedAt,
|
|
FieldUpdatedAt,
|
|
FieldName,
|
|
FieldDescription,
|
|
FieldEnableGrease,
|
|
FieldCipherSuites,
|
|
FieldCurves,
|
|
FieldPointFormats,
|
|
FieldSignatureAlgorithms,
|
|
FieldAlpnProtocols,
|
|
FieldSupportedVersions,
|
|
FieldKeyShareGroups,
|
|
FieldPskModes,
|
|
FieldExtensions,
|
|
}
|
|
|
|
// ValidColumn reports if the column name is valid (part of the table columns).
|
|
func ValidColumn(column string) bool {
|
|
for i := range Columns {
|
|
if column == Columns[i] {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
var (
|
|
// DefaultCreatedAt holds the default value on creation for the "created_at" field.
|
|
DefaultCreatedAt func() time.Time
|
|
// DefaultUpdatedAt holds the default value on creation for the "updated_at" field.
|
|
DefaultUpdatedAt func() time.Time
|
|
// UpdateDefaultUpdatedAt holds the default value on update for the "updated_at" field.
|
|
UpdateDefaultUpdatedAt func() time.Time
|
|
// NameValidator is a validator for the "name" field. It is called by the builders before save.
|
|
NameValidator func(string) error
|
|
// DefaultEnableGrease holds the default value on creation for the "enable_grease" field.
|
|
DefaultEnableGrease bool
|
|
)
|
|
|
|
// OrderOption defines the ordering options for the TLSFingerprintProfile queries.
|
|
type OrderOption func(*sql.Selector)
|
|
|
|
// ByID orders the results by the id field.
|
|
func ByID(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldID, opts...).ToFunc()
|
|
}
|
|
|
|
// ByCreatedAt orders the results by the created_at field.
|
|
func ByCreatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldCreatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByUpdatedAt orders the results by the updated_at field.
|
|
func ByUpdatedAt(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldUpdatedAt, opts...).ToFunc()
|
|
}
|
|
|
|
// ByName orders the results by the name field.
|
|
func ByName(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldName, opts...).ToFunc()
|
|
}
|
|
|
|
// ByDescription orders the results by the description field.
|
|
func ByDescription(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldDescription, opts...).ToFunc()
|
|
}
|
|
|
|
// ByEnableGrease orders the results by the enable_grease field.
|
|
func ByEnableGrease(opts ...sql.OrderTermOption) OrderOption {
|
|
return sql.OrderByField(FieldEnableGrease, opts...).ToFunc()
|
|
}
|